Test Setup Failed
Push — master ( e91ec2...495c90 )
by Márcio Lucas R.
03:10
created
util/Annotations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $fullComments = $funReflec->retornaComentariosAtributos($obj);
30 30
         $attributos = $funReflec->pegaAtributosDoObjeto($obj);
31 31
         $ann = [];
32
-        for($i = 0; $i < count($attributos); $i++){
32
+        for ($i = 0; $i < count($attributos); $i++) {
33 33
             preg_match_all($pattern,
34 34
                 $fullComments[$attributos[$i]],
35 35
                 $out);
Please login to merge, or discard this patch.
PhiberAutoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 {
15 15
     public function __construct()
16 16
     {
17
-        spl_autoload_register(function ($class) {
17
+        spl_autoload_register(function($class) {
18 18
             include_once(str_replace('\\', '/', $class . '.php'));
19 19
         });
20 20
     }
Please login to merge, or discard this patch.