Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace Apie\Maker\BoundedContext\Interfaces; |
| 3 | |
| 4 | use Apie\Maker\Enums\OverwriteStrategy; |
| 5 | |
| 6 | interface CodeWriterConfigurationInterface |
| 7 | { |
| 8 | public function getOverwriteStrategy(): OverwriteStrategy; |
| 9 | public function getTargetPath(): string|false|null; |
| 10 | public function getTargetNamespace(string $sub = ''): ?string; |
| 11 | } |