fix more php deprecations

This commit is contained in:
Mario
2024-01-14 17:22:33 +00:00
parent 2bbecfe8dd
commit d074e2aba0

View File

@@ -5914,6 +5914,11 @@ class Permutator {
*
* @param array $list the array of elements to iterate over.
*/
public $list;
public $done;
public $left;
public function __construct($list) {
// original array
$this->list = $list;