Completed
Pull Request — master (#183)
by Cristian
02:00
created
src/routes/backpack/base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     'middleware' => 'web',
17 17
     'prefix'     => config('backpack.base.route_prefix'),
18 18
 ],
19
-function () {
19
+function() {
20 20
     // if not otherwise configured, setup the auth routes
21 21
     if (config('backpack.base.setup_auth_routes')) {
22 22
         // Authentication Routes...
Please login to merge, or discard this patch.
src/app/Http/Requests/ChangePasswordRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
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'), Auth::user()->password)) {
48 48
                 $validator->errors()->add('old_password', trans('backpack::base.old_password_incorrect'));
Please login to merge, or discard this patch.
src/app/Console/Commands/Install.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         }
69 69
 
70 70
         $process = new Process($command);
71
-        $process->run(function ($type, $buffer) {
71
+        $process->run(function($type, $buffer) {
72 72
             if (Process::ERR === $type) {
73 73
                 echo '... > '.$buffer;
74 74
             } else {
Please login to merge, or discard this patch.