Completed
Push — master ( d6c050...95a747 )
by Nekrasov
02:07
created
src/ServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
      */
15 15
     public function register()
16 16
     {
17
-        $this->app->singleton('system.checks', function ($app) {
17
+        $this->app->singleton('system.checks', function($app) {
18 18
             return new ChecksCollection($app);
19 19
         });
20 20
 
21
-        $this->app->singleton('command.system.check', function ($app) {
21
+        $this->app->singleton('command.system.check', function($app) {
22 22
             return new SystemCheckCommand($app->make('system.checks'));
23 23
         });
24 24
 
Please login to merge, or discard this patch.
src/Checks/Laravel/Dev/ConfigurationIsNotCached.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Perform the check.
19 19
      *
20
-     * @return Result
20
+     * @return \Arrilot\SystemCheck\CheckResult
21 21
      */
22 22
     public function perform()
23 23
     {
Please login to merge, or discard this patch.
src/Checks/Laravel/Dev/RoutesAreNotCached.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Perform the check.
19 19
      *
20
-     * @return Result
20
+     * @return \Arrilot\SystemCheck\CheckResult
21 21
      */
22 22
     public function perform()
23 23
     {
Please login to merge, or discard this patch.
src/Checks/Laravel/Production/ConfigurationIsCached.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Perform the check.
19 19
      *
20
-     * @return Result
20
+     * @return \Arrilot\SystemCheck\CheckResult
21 21
      */
22 22
     public function perform()
23 23
     {
Please login to merge, or discard this patch.
src/Checks/Laravel/Production/RoutesAreCached.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Perform the check.
19 19
      *
20
-     * @return Result
20
+     * @return \Arrilot\SystemCheck\CheckResult
21 21
      */
22 22
     public function perform()
23 23
     {
Please login to merge, or discard this patch.
src/CheckResult.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function __construct($status, $comment)
42 42
     {
43
-        if (! in_array($status, $this->possibleStatuses)) {
43
+        if (!in_array($status, $this->possibleStatuses)) {
44 44
             throw new InvalidArgumentException("Check result can not have status '{$status}'");
45 45
         }
46 46
 
Please login to merge, or discard this patch.