| Total Complexity | 6 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class NullObserver implements ObserverInterface |
||
| 12 | { |
||
| 13 | public function start(int $max): void |
||
| 14 | { |
||
| 15 | return; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function end(): void |
||
| 21 | } |
||
| 22 | |||
| 23 | public function update(string $currentFile): void |
||
| 24 | { |
||
| 25 | return; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function notifyAnalyzeFileError(AnalysedFileException $e): void |
||
| 29 | { |
||
| 30 | return; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function notifyResolveDependencyError(string $file, ResolveDependencyException $e): void |
||
| 36 | } |
||
| 37 | |||
| 38 | public function notifyResolvePhpDocError(string $file, FullyQualifiedStructuralElementName $fqsen, InvalidFullyQualifiedStructureElementNameException $e): void |
||
| 41 | } |
||
| 42 | } |
||
| 43 |