From 7f9e4b6bc94fa1c2785bfe13afb9090da0cd56d6 Mon Sep 17 00:00:00 2001 From: Kevin Frantz Date: Wed, 31 Oct 2018 22:51:24 +0100 Subject: [PATCH] Added methods which are requiered by interface --- .../Structur/Facade/Security/Source/AbstractSourceFacade.php | 5 +++++ 1 file changed, 5 insertions(+) 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(); + } }