| 1 | <?php declare(strict_types=1); |
||
| 25 | class SourceModulesRepository implements SourceModulesRepositoryInterface |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var FilesystemInterface |
||
| 29 | */ |
||
| 30 | private $filesystem; |
||
| 31 | |||
| 32 | |||
| 33 | public function __construct(FilesystemInterface $filesystem) |
||
| 37 | |||
| 38 | public function has(string $id): bool |
||
| 42 | |||
| 43 | public function get(string $id): SourceModuleBuilderInterface |
||
| 51 | } |
||
| 52 |