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