Issues (15)

src/ProjectAnalyser.php (1 issue)

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
The private property $directory is not used, and could be removed.
Loading history...
12
13
    public function __construct(string $directory)
14
    {
15
16
    }
17
18
    public function readFromFile(string $filename) : void
19
    {
20
21
    }
22
}
23