@@ -5,7 +5,7 @@ |
||
5 | 5 | * Appends the configured backpack prefix and returns |
6 | 6 | * the URL using the standard Laravel helpers. |
7 | 7 | * |
8 | - * @param $path |
|
8 | + * @param string $path |
|
9 | 9 | * |
10 | 10 | * @return string |
11 | 11 | */ |
@@ -42,7 +42,7 @@ |
||
42 | 42 | */ |
43 | 43 | public function withValidator($validator) |
44 | 44 | { |
45 | - $validator->after(function ($validator) { |
|
45 | + $validator->after(function($validator) { |
|
46 | 46 | // check old password matches |
47 | 47 | if (!Hash::check($this->input('old_password'), backpack_auth()->user()->password)) { |
48 | 48 | $validator->errors()->add('old_password', trans('backpack::base.old_password_incorrect')); |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Routing\Router; |
6 | 6 | use Illuminate\Support\ServiceProvider; |
7 | -use Route; |
|
8 | 7 | |
9 | 8 | class BaseServiceProvider extends ServiceProvider |
10 | 9 | { |
@@ -65,7 +65,7 @@ |
||
65 | 65 | |
66 | 66 | $process = new Process($command, null, null, null, 300, null); |
67 | 67 | |
68 | - $process->run(function ($type, $buffer) { |
|
68 | + $process->run(function($type, $buffer) { |
|
69 | 69 | if (Process::ERR === $type) { |
70 | 70 | $this->line($buffer); |
71 | 71 | } else { |
@@ -10,5 +10,5 @@ |
||
10 | 10 | 'prefix' => config('backpack.base.route_prefix', 'admin'), |
11 | 11 | 'middleware' => [backpack_middleware()], |
12 | 12 | 'namespace' => 'App\Http\Controllers\Admin', |
13 | -], function () { // custom admin routes |
|
13 | +], function() { // custom admin routes |
|
14 | 14 | }); // this should be the absolute last line of this file |