| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 30 | protected function setupCopiedWorkDir(string $extra = 'Copied'): void |
||
| 31 | { |
||
| 32 | parent::setupCopiedWorkDir($extra); |
||
| 33 | $copiedWorkDir = rtrim(static::WORK_DIR, '/').$extra.'/'; |
||
| 34 | $this->setupContainer( |
||
| 35 | $copiedWorkDir |
||
| 36 | .'/'.AbstractCommand::DEFAULT_SRC_SUBFOLDER |
||
| 37 | .'/'.AbstractGenerator::ENTITIES_FOLDER_NAME |
||
| 38 | ); |
||
| 41 |