diff --git a/application/src/Structur/Facade/Security/Source/AbstractSourceFacade.php b/application/src/Structur/Facade/Security/Source/AbstractSourceFacade.php index 0aaf675..3f8345a 100644 --- a/application/src/Structur/Facade/Security/Source/AbstractSourceFacade.php +++ b/application/src/Structur/Facade/Security/Source/AbstractSourceFacade.php @@ -70,4 +70,9 @@ abstract class AbstractSourceFacade implements SourceFacadeInterface protected function lazyLoadSourceFacade(SourceInterface $source) { } + + public function __toString(): string + { + return $this->source->__toString(); + } }