Completed
Push — master ( f16e30...7218e0 )
by Márcio Lucas R.
03:50 queued 01:33
created
src/Phiber/Util/Annotations.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $pattern = '/@+_+[A-z]\w+=\w+/';
29 29
         
30 30
         $fullComments = $funReflec->retornaComentariosAtributos($object);
31
-        $attribuites   = $funReflec->pegaAtributosDoObjeto($object);
31
+        $attribuites = $funReflec->pegaAtributosDoObjeto($object);
32 32
         
33 33
         $annotationsList = [];
34 34
         
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
                 $output
43 43
             );
44 44
 
45
-            $annotationsList[ $attribuites[$iterator] ] = $output[0];
45
+            $annotationsList[$attribuites[$iterator]] = $output[0];
46 46
         }
47 47
 
48 48
         return $annotationsList;
Please login to merge, or discard this patch.
Phiber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 /**
9 9
  *Constante que define a base de onde está localizado o projeto
10 10
  */
11
-define("BASE_DIR",str_replace('\\', '/', dirname(__FILE__)));
11
+define("BASE_DIR", str_replace('\\', '/', dirname(__FILE__)));
12 12
 
13 13
 /**
14 14
  * A classe Phiber é a responsável por ser a classe módulo entre as funcionalidades do
Please login to merge, or discard this patch.
src/Phiber/ORM/Exceptions/NotImplementedException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function __construct($message)
20 20
     {
21
-        if($message !== null ) {
21
+        if ($message !== null) {
22 22
             $this->message = $message;
23 23
         }
24 24
         $this->message = new Internationalization('not_implemented_exception_default_message');
@@ -27,6 +27,6 @@  discard block
 block discarded – undo
27 27
     public function __toString()
28 28
     {
29 29
         parent::__toString(); // TODO: Change the autogenerated stub
30
-        return `NotImplementedException: ${$this->message}` ;
30
+        return `NotImplementedException: ${$this->message}`;
31 31
     }
32 32
 }
33 33
\ No newline at end of file
Please login to merge, or discard this patch.