1 | <?php declare(strict_types=1); |
||
2 | |||
3 | namespace FatCode\OpenApi; |
||
4 | |||
5 | /** |
||
6 | * Class ProjectAnalyser |
||
7 | * @package FatCode\OpenApi |
||
8 | */ |
||
9 | class ProjectAnalyser |
||
10 | { |
||
11 | private $directory; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
12 | |||
13 | public function __construct(string $directory) |
||
14 | { |
||
15 | |||
16 | } |
||
17 | |||
18 | public function readFromFile(string $filename) : void |
||
19 | { |
||
20 | |||
21 | } |
||
22 | } |
||
23 |