traverse = $traverse ?? $this->traverse; } public function __get(string $option) { if ('groups' === $option) { // when this is reached, no groups have been configured return null; } return parent::__get($option); } public function addImplicitGroupName(string $group) { if (null !== $this->groups) { parent::addImplicitGroupName($group); } } }