Completed
Push — master ( 5c3d90...0aea64 )
by Cristian
22:11 queued 12:21
created
src/app/Http/Controllers/Auth/RegisterController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @param array $data
63 63
      *
64
-     * @return User
64
+     * @return \Illuminate\Contracts\Auth\Authenticatable
65 65
      */
66 66
     protected function create(array $data)
67 67
     {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      *
98 98
      * @param \Illuminate\Http\Request $request
99 99
      *
100
-     * @return \Illuminate\Http\Response
100
+     * @return \Illuminate\Http\RedirectResponse
101 101
      */
102 102
     public function register(Request $request)
103 103
     {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      *
72 72
      * @param \Illuminate\Http\Request $request
73 73
      *
74
-     * @return \Illuminate\Http\Response
74
+     * @return \Illuminate\Http\RedirectResponse
75 75
      */
76 76
     public function logout(Request $request)
77 77
     {
Please login to merge, or discard this patch.
src/BaseServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             'middleware' => 'web',
56 56
             'prefix'     => config('backpack.base.route_prefix'),
57 57
         ],
58
-        function () {
58
+        function() {
59 59
             // if not otherwise configured, setup the auth routes
60 60
             if (config('backpack.base.setup_auth_routes')) {
61 61
                 Route::auth();
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     public function register()
79 79
     {
80 80
         // register the current package
81
-        $this->app->bind('base', function ($app) {
81
+        $this->app->bind('base', function($app) {
82 82
             return new Base($app);
83 83
         });
84 84
 
Please login to merge, or discard this patch.
src/resources/lang/en/logmanager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 // actual language file, from the package.
10 10
 
11 11
 // If a langfile with the same name exists in the package, load that one
12
-if (file_exists(__DIR__ . '/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
-    return include(__DIR__ . '/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
12
+if (file_exists(__DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
+    return include(__DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
14 14
 }
15 15
 
16 16
 return [];
Please login to merge, or discard this patch.
src/resources/lang/en/crud.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 // actual language file, from the package.
10 10
 
11 11
 // If a langfile with the same name exists in the package, load that one
12
-if (file_exists(__DIR__ . '/../../../../../crud/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
-    return include(__DIR__ . '/../../../../../crud/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
12
+if (file_exists(__DIR__.'/../../../../../crud/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
+    return include(__DIR__.'/../../../../../crud/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
14 14
 }
15 15
 
16 16
 return [];
Please login to merge, or discard this patch.
src/resources/lang/en/permissionmanager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 // actual language file, from the package.
10 10
 
11 11
 // If a langfile with the same name exists in the package, load that one
12
-if (file_exists(__DIR__ . '/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
-    return include(__DIR__ . '/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
12
+if (file_exists(__DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
+    return include(__DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
14 14
 }
15 15
 
16 16
 return [];
Please login to merge, or discard this patch.
src/resources/lang/en/backup.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 // actual language file, from the package.
10 10
 
11 11
 // If a langfile with the same name exists in the package, load that one
12
-if (file_exists(__DIR__ . '/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
-    return include(__DIR__ . '/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
12
+if (file_exists(__DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
+    return include(__DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
14 14
 }
15 15
 
16 16
 return [];
Please login to merge, or discard this patch.
src/resources/lang/en/settings.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 // actual language file, from the package.
10 10
 
11 11
 // If a langfile with the same name exists in the package, load that one
12
-if (file_exists(__DIR__ . '/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
-    return include(__DIR__ . '/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
12
+if (file_exists(__DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
+    return include(__DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
14 14
 }
15 15
 
16 16
 return [];
Please login to merge, or discard this patch.
src/resources/lang/gr/logmanager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 // actual language file, from the package.
10 10
 
11 11
 // If a langfile with the same name exists in the package, load that one
12
-if (file_exists(__DIR__ . '/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
-    return include(__DIR__ . '/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
12
+if (file_exists(__DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
13
+    return include(__DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__));
14 14
 }
15 15
 
16 16
 return [];
Please login to merge, or discard this patch.