Added methods which are requiered by interface

This commit is contained in:
Kevin Frantz 2018-10-31 22:51:24 +01:00
parent cadf26b7aa
commit 7f9e4b6bc9

View File

@ -70,4 +70,9 @@ abstract class AbstractSourceFacade implements SourceFacadeInterface
protected function lazyLoadSourceFacade(SourceInterface $source)
{
}
public function __toString(): string
{
return $this->source->__toString();
}
}