Completed
Pull Request — master (#2212)
by
unknown
02:57
created
src/Admin.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -190,19 +190,19 @@
 block discarded – undo
190 190
     }
191 191
 
192 192
     /**
193
-    * @param string $subtitle
194
-    * @param string $sep
195
-    *
196
-    * @retuen void
197
-    */
193
+     * @param string $subtitle
194
+     * @param string $sep
195
+     *
196
+     * @retuen void
197
+     */
198 198
     public function setSubtitle($subtitle, $sep = ' - ')
199 199
     {
200 200
         $this->subtitle = $sep . $subtitle;
201 201
     }
202 202
 
203 203
     /**
204
-    * @retuen string
205
-    */
204
+     * @retuen string
205
+     */
206 206
     public function getSubtitle()
207 207
     {
208 208
         return $this->subtitle;
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
     */
198 198
     public function setSubtitle($subtitle, $sep = ' - ')
199 199
     {
200
-        $this->subtitle = $sep . $subtitle;
200
+        $this->subtitle = $sep.$subtitle;
201 201
     }
202 202
 
203 203
     /**
@@ -261,10 +261,10 @@  discard block
 block discarded – undo
261 261
             'middleware' => config('admin.route.middleware'),
262 262
         ];
263 263
 
264
-        Route::group($attributes, function ($router) {
264
+        Route::group($attributes, function($router) {
265 265
 
266 266
             /* @var \Illuminate\Routing\Router $router */
267
-            $router->group([], function ($router) {
267
+            $router->group([], function($router) {
268 268
 
269 269
                 /* @var \Illuminate\Routing\Router $router */
270 270
                 $router->resource('auth/users', 'UserController');
Please login to merge, or discard this patch.