Since $headers is declared private, accessing it with static will lead to errors in possible sub-classes; you can either use self, or increase the visibility of $headers to at least protected.
Since $headers is declared private, accessing it with static will lead to errors in possible sub-classes; you can either use self, or increase the visibility of $headers to at least protected.
Loading history...
20
}
21
22
/**
23
* Adiciona no 'HTTP Header' os valores que foram adicionados
Since $headers is declared private, accessing it with static will lead to errors in possible sub-classes; you can either use self, or increase the visibility of $headers to at least protected.