| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptyFileOperation implements FileOperationInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return Contents\File |
||
| 11 | */ |
||
| 12 | 2 | public function content(): Contents\File |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return Git\Commit |
||
| 19 | */ |
||
| 20 | 2 | public function commit(): Git\Commit |
|
| 24 | } |
||
| 25 |