1 | <?php namespace HSkrasek\OpenAPI\Command\Stages; |
||
7 | class GetOpenAPISchemaFiles implements StageInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var FilesystemInterface |
||
11 | */ |
||
12 | private $filesystem; |
||
13 | |||
14 | public function __construct(FilesystemInterface $filesystem) |
||
18 | |||
19 | /** |
||
20 | * @inheritDoc |
||
21 | * @throws \HSkrasek\OpenAPI\Exceptions\NoSchemaFilesFoundException |
||
22 | */ |
||
23 | public function __invoke($payload) |
||
37 | } |
||
38 |