Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Push — master ( db9667...8a3a04 )
by Cristian
03:33
created
src/Console/Commands/ViewBackpackCommand.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
      */
91 91
     protected function getPath($name)
92 92
     {
93
-        return $this->laravel['path'].'/../resources/views/'.str_replace('\\', '/', $name).'.blade.php';
93
+        return $this->laravel[ 'path' ].'/../resources/views/'.str_replace('\\', '/', $name).'.blade.php';
94 94
     }
95 95
 
96 96
     /**
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,9 @@
 block discarded – undo
41 41
      */
42 42
     protected function getStub()
43 43
     {
44
-        if ($this->option('plain')) return __DIR__.'/../stubs/view-plain.stub';
44
+        if ($this->option('plain')) {
45
+         return __DIR__.'/../stubs/view-plain.stub';
46
+        }
45 47
 
46 48
         return __DIR__.'/../stubs/view.stub';
47 49
     }
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,10 +45,10 @@
 block discarded – undo
45 45
     }
46 46
 
47 47
      /**
48
-     * Execute the console command.
49
-     *
50
-     * @return bool|null
51
-     */
48
+      * Execute the console command.
49
+      *
50
+      * @return bool|null
51
+      */
52 52
     public function fire()
53 53
     {
54 54
         $name = $this->getNameInput();
Please login to merge, or discard this patch.
src/Console/Commands/ConfigBackpackCommand.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,10 +45,10 @@
 block discarded – undo
45 45
     }
46 46
 
47 47
      /**
48
-     * Execute the console command.
49
-     *
50
-     * @return bool|null
51
-     */
48
+      * Execute the console command.
49
+      *
50
+      * @return bool|null
51
+      */
52 52
     public function fire()
53 53
     {
54 54
         $name = $this->getNameInput();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
      */
89 89
     protected function getPath($name)
90 90
     {
91
-        return $this->laravel['path'].'/../config/'.str_replace('\\', '/', $name).'.php';
91
+        return $this->laravel[ 'path' ].'/../config/'.str_replace('\\', '/', $name).'.php';
92 92
     }
93 93
 
94 94
     /**
Please login to merge, or discard this patch.
src/Console/Commands/ModelBackpackCommand.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -74,11 +74,11 @@
 block discarded – undo
74 74
     }
75 75
 
76 76
      /**
77
-     * Build the class with the given name.
78
-     *
79
-     * @param  string  $name
80
-     * @return string
81
-     */
77
+      * Build the class with the given name.
78
+      *
79
+      * @param  string  $name
80
+      * @return string
81
+      */
82 82
     protected function buildClass($name)
83 83
     {
84 84
         $stub = $this->files->get($this->getStub());
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,9 @@
 block discarded – undo
41 41
      */
42 42
     protected function getStub()
43 43
     {
44
-        if ($this->option('softdelete')) return __DIR__.'/../stubs/model-softdelete.stub';
44
+        if ($this->option('softdelete')) {
45
+         return __DIR__.'/../stubs/model-softdelete.stub';
46
+        }
45 47
 
46 48
         return __DIR__.'/../stubs/model.stub';
47 49
     }
Please login to merge, or discard this patch.