7
Looking at some Github repositories I found this repository for generation of boletos with php and within the class Cedente
I was struck by the use of the word and
within the function construct
in this file.
The operator and
is used for comparisons and can also be written as &&
like the if
in the example below;
if (x = 10 and y = 20) { ...
In this file shown what the function of the and
?
$endereco and $this->setEndereco($endereco);