Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update array clearing for php compatibilities
remove array clearing method (lines 1911 and 2001) : ```php $this->infos = []; ``` in profit of a more php compatible method : ```php $this->infos = array(); ```
- Loading branch information