Method chaining not needed

This commit is contained in:
Andrea Marco Sartori 2022-11-30 00:50:04 +10:00
parent 36f8325604
commit 27d1e3f9af

View File

@ -169,14 +169,12 @@ class State
* Traverse the given object key
*
* @param string $key
* @return static
* @return void
*/
public function traverseKey(string $key): static
public function traverseKey(string $key): void
{
$this->tree->traverseKey($key);
$this->treeChanged = true;
return $this;
}
/**