scopes[] = $scope; } function findSymbol(string $name) : ?mtgMetaUnit { foreach($this->scopes as $scope) { $unit = $scope->findSymbol($name); if($unit) return $unit; } return null; } }