Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.4] Use the correct user model namespace in make:policy Command #19965

Merged
merged 6 commits into from
Jul 10, 2017
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/Illuminate/Foundation/Console/PolicyMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,24 @@ protected function buildClass($name)
{
$stub = parent::buildClass($name);

$stub = $this->replaceUserModelNamespace($stub);

$model = $this->option('model');

return $model ? $this->replaceModel($stub, $model) : $stub;
}

/**
* Replace the user model for the given stub.
*
* @param string $stub
* @return string
*/
protected function replaceUserModelNamespace($stub)
{
return str_replace($this->rootNamespace().'User', config('auth.providers.users.model'), $stub);
Copy link
Contributor

@4refael 4refael Jul 8, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A slight improvement

if ($this->rootNamespace().'User' !== config('auth.providers.users.model')) {
	return str_replace($this->rootNamespace().'User', config('auth.providers.users.model'), $stub);
}
return $stub;

}

/**
* Replace the model for the given stub.
*
Expand Down