Test Failed
Push — master ( d0fa8a...b17d3c )
by Sergi Tur
07:31
created
src/Github/GithubAPI.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -156,8 +156,9 @@
 block discarded – undo
156 156
      */
157 157
     protected function credentials()
158 158
     {
159
-        if (isset($this->credentials))
160
-            return $this->credentials;
159
+        if (isset($this->credentials)) {
160
+                    return $this->credentials;
161
+        }
161 162
         throw new CredentialsException;
162 163
     }
163 164
 
Please login to merge, or discard this patch.
src/Traits/LaravelConfigFile.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,9 @@
 block discarded – undo
169 169
      */
170 170
     protected function service($file, $outputFile = null)
171 171
     {
172
-        if (!file_exists($file)) throw new FileNotFoundException($file);
172
+        if (!file_exists($file)) {
173
+         throw new FileNotFoundException($file);
174
+        }
173 175
         if ($this->installConfigFile() == -1) {
174 176
             return;
175 177
         }
Please login to merge, or discard this patch.