Browse Source
remove array clearing method (lines 1911 and 2001) : ```php $this->infos = []; ``` in profit of a more php compatible method : ```php $this->infos = array(); ```develop
1 changed files with 2 additions and 2 deletions
Loading…
Reference in new issue