public function isEmpty() : bool { foreach ($this as $test) { if (count($test) !== 0) { return false; } } return true; }