@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | final public static function converterDataParaBrasileira($data) |
| 22 | 22 | { |
| 23 | - return date( 'd-m-Y', strtotime($data) ); |
|
| 23 | + return date('d-m-Y', strtotime($data)); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |
@@ -34,6 +34,6 @@ discard block |
||
| 34 | 34 | setlocale(LC_ALL, 'pt_BR', 'pt_BR.utf-8', 'pt_BR.utf-8', 'portuguese'); |
| 35 | 35 | date_default_timezone_set('America/Sao_Paulo'); |
| 36 | 36 | |
| 37 | - return strftime('%A, %d de %B de %Y', strtotime($data) ); |
|
| 37 | + return strftime('%A, %d de %B de %Y', strtotime($data)); |
|
| 38 | 38 | } |
| 39 | 39 | } |
| 40 | 40 | \ No newline at end of file |
@@ -28,7 +28,7 @@ discard block |
||
| 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 |
||
| 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; |
@@ -8,7 +8,7 @@ |
||
| 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 |