Completed
Push — master ( a17906...027879 )
by Scott
10s
created
tests/fixtures/phpstanTypeError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 /**
21 21
  * @SuppressWarnings(PHPMD)
22 22
  */
23
-function testing (int $a) {
23
+function testing(int $a) {
24 24
 }
25 25
 
26 26
 if (false) {
Please login to merge, or discard this patch.
CreatePhar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 $phar->addFile('autoload.php');
13 13
 $phar->addFile('bin/diffFilter');
14 14
 
15
-$code = realpath(__DIR__.'/src');
15
+$code = realpath(__DIR__ . '/src');
16 16
 $codeLength = strlen($code);
17 17
 $directory = new RecursiveDirectoryIterator(
18 18
     $code,
Please login to merge, or discard this patch.
src/PhanJsonLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
  */
9 9
 class PhanJsonLoader extends CodeClimateLoader
10 10
 {
11
+    /**
12
+     * @param string $file
13
+     */
11 14
     public function __construct($file)
12 15
     {
13 16
         $this->file = json_decode(file_get_contents($file));
Please login to merge, or discard this patch.