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