Completed
Push — master ( 2b102d...adf918 )
by Kevin
04:41 queued 02:20
created
lib/Introspection/Introspector.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,9 @@
 block discarded – undo
141 141
     {
142 142
         $namespace = $class = '';
143 143
         $content = file_get_contents($file);
144
-        if (!$content) return null;
144
+        if (!$content) {
145
+            return null;
146
+        }
145 147
         $tokens = token_get_all($content);
146 148
         $count = count($tokens);
147 149
         for ($i = 2; $i < $count; $i++) {
Please login to merge, or discard this patch.