This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | namespace Umbrella\Ya\RetornoBoleto; |
||
4 | |||
5 | use DateTime; |
||
6 | use Stringy\Stringy; |
||
7 | use Umbrella\Ya\RetornoBoleto\Cnab\ComposableInterface; |
||
8 | |||
9 | /** |
||
10 | * Classe base para leitura de arquivos de retorno de cobranças dos bancos brasileiros.<br/> |
||
11 | * @author Ítalo Lelis de Vietro <[email protected]> |
||
12 | */ |
||
13 | abstract class AbstractProcessor |
||
14 | { |
||
15 | /** |
||
16 | * @property string $nomeArquivo Nome do arquivo de texto a ser lido |
||
17 | */ |
||
18 | protected $nomeArquivo = ""; |
||
19 | protected $needToCreateLote = false; |
||
20 | |||
21 | /** |
||
22 | * Construtor da classe. |
||
23 | * @param string $nomeArquivo Nome do arquivo de retorno do banco. |
||
24 | */ |
||
25 | public function __construct($nomeArquivo = null) |
||
26 | { |
||
27 | if (isset($nomeArquivo)) { |
||
28 | $this->setNomeArquivo($nomeArquivo); |
||
29 | } |
||
30 | } |
||
31 | |||
32 | public function needToCreateLote() |
||
33 | { |
||
34 | return $this->needToCreateLote; |
||
35 | } |
||
36 | |||
37 | public function setNeedToCreateLote($needToCreateLote) |
||
38 | { |
||
39 | $this->needToCreateLote = $needToCreateLote; |
||
40 | return $this; |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * Setter para o atributo |
||
45 | * @param string $nomeArquivo |
||
46 | */ |
||
47 | public function setNomeArquivo($nomeArquivo) |
||
48 | { |
||
49 | $this->nomeArquivo = $nomeArquivo; |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * Getter para o atributo |
||
54 | */ |
||
55 | public function getNomeArquivo() |
||
56 | { |
||
57 | return $this->nomeArquivo; |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * Processa uma linha do arquivo de retorno. O método é abstrato e deve ser implementado nas sub-classes. |
||
62 | * @param int $numLn Número da linha a ser processada |
||
63 | * @param string $linha String contendo a linha a ser processada |
||
64 | * @return ComposableInterface Retorna um vetor associativo contendo os valores da linha processada. |
||
65 | */ |
||
66 | public abstract function processarLinha($numLn, Stringy $linha); |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
67 | |||
68 | public abstract function processCnab(RetornoInterface $retorno, ComposableInterface $composable, |
||
0 ignored issues
–
show
|
|||
69 | LoteInterface $lote = null); |
||
0 ignored issues
–
show
|
|||
70 | |||
71 | /** |
||
72 | * Formata uma string, contendo um valor real (float) sem o separador de decimais, |
||
73 | * para a sua correta representação real. |
||
74 | * @param string $valor String contendo o valor na representação |
||
75 | * usada nos arquivos de retorno do banco, sem o separador de decimais. |
||
76 | * @param int $numCasasDecimais Total de casas decimais do número |
||
77 | * representado em $valor. |
||
78 | * @return float Retorna o número representado em $valor, no seu formato float, |
||
79 | * contendo o separador de decimais. |
||
80 | */ |
||
81 | public function formataNumero($valor, $numCasasDecimais = 2) |
||
82 | { |
||
83 | if (empty($valor)) { |
||
84 | return 0; |
||
85 | } |
||
86 | $casas = $numCasasDecimais; |
||
87 | if ($casas > 0) { |
||
88 | $valor = substr($valor, 0, strlen($valor) - $casas) . "." . substr($valor, strlen($valor) - $casas, $casas); |
||
89 | $valor = (float)$valor; |
||
90 | } else { |
||
91 | $valor = (int)$valor; |
||
92 | } |
||
93 | |||
94 | return $valor; |
||
95 | } |
||
96 | |||
97 | /** |
||
98 | * Formata uma string, contendo uma data sem o separador, no formato DDMMAA. |
||
99 | * @param string $date String contendo a data no formato DDMMAA. |
||
100 | * @return DateTime |
||
101 | */ |
||
102 | public function createDate($date, $format = "dmy") |
||
103 | { |
||
104 | if (empty($date)) { |
||
105 | return ""; |
||
0 ignored issues
–
show
The return type of
return ''; (string ) is incompatible with the return type documented by Umbrella\Ya\RetornoBolet...ctProcessor::createDate of type DateTime .
If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design. Let’s take a look at an example: class Author {
private $name;
public function __construct($name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
}
abstract class Post {
public function getAuthor() {
return 'Johannes';
}
}
class BlogPost extends Post {
public function getAuthor() {
return new Author('Johannes');
}
}
class ForumPost extends Post { /* ... */ }
function my_function(Post $post) {
echo strtoupper($post->getAuthor());
}
Our function ![]() |
|||
106 | } |
||
107 | |||
108 | return DateTime::createFromFormat($format, $date); |
||
109 | } |
||
110 | |||
111 | /** |
||
112 | * Formata uma string, contendo uma data sem o separador, no formato DDMMAA HHIISS. |
||
113 | * @param string $dateTimeString String contendo a data no formato DDMMAA. |
||
114 | * @return DateTime |
||
115 | */ |
||
116 | public function createDateTime($dateTimeString, $format = "mdy His") |
||
117 | { |
||
118 | if (empty($dateTimeString)) { |
||
119 | return ""; |
||
0 ignored issues
–
show
The return type of
return ''; (string ) is incompatible with the return type documented by Umbrella\Ya\RetornoBolet...ocessor::createDateTime of type DateTime .
If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design. Let’s take a look at an example: class Author {
private $name;
public function __construct($name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
}
abstract class Post {
public function getAuthor() {
return 'Johannes';
}
}
class BlogPost extends Post {
public function getAuthor() {
return new Author('Johannes');
}
}
class ForumPost extends Post { /* ... */ }
function my_function(Post $post) {
echo strtoupper($post->getAuthor());
}
Our function ![]() |
|||
120 | } |
||
121 | |||
122 | return DateTime::createFromFormat($format, $dateTimeString); |
||
123 | } |
||
124 | } |
||
125 |