@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function getInputFiles($id) |
40 | 40 | { |
41 | - $patten = $this->getDataPath($id). '*'. self::TYPE_IN; |
|
41 | + $patten = $this->getDataPath($id).'*'.self::TYPE_IN; |
|
42 | 42 | |
43 | 43 | $fs = new Filesystem(); |
44 | 44 | $files = $fs->glob($patten); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public function getOutputFiles($id) |
61 | 61 | { |
62 | - $patten = $this->getDataPath($id). '*'. self::TYPE_OUT; |
|
62 | + $patten = $this->getDataPath($id).'*'.self::TYPE_OUT; |
|
63 | 63 | |
64 | 64 | $fs = new Filesystem(); |
65 | 65 | $files = $fs->glob($patten); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | Route::group([ |
60 | 60 | 'middleware' => 'web', |
61 | 61 | 'namespace' => $this->namespace, |
62 | - ], function ($router) { |
|
62 | + ], function($router) { |
|
63 | 63 | require base_path('routes/web.php'); |
64 | 64 | }); |
65 | 65 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | // 'middleware' => 'judge', |
78 | 78 | 'namespace' => $this->namespace, |
79 | 79 | 'prefix' => 'judge', |
80 | - ], function ($router) { |
|
80 | + ], function($router) { |
|
81 | 81 | require base_path('routes/judge.php'); |
82 | 82 | }); |
83 | 83 | } |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | 'middleware' => 'admin', |
89 | 89 | 'namespace' => $this->namespace, |
90 | 90 | 'prefix' => 'admin', |
91 | - ], function ($router) { |
|
91 | + ], function($router) { |
|
92 | 92 | require base_path('routes/admin.php'); |
93 | 93 | }); |
94 | 94 | } |