| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | protected function doOtherOperations(): void |
||
| 34 | { |
||
| 35 | $class = $this->qualifyClass($this->getNameInput()); |
||
| 36 | $path = $this->getPath($class); |
||
| 37 | $content = file_get_contents($path); |
||
| 38 | |||
| 39 | $content = str_replace('DummySlug', Str::kebab($this->getNameInput()), $content); |
||
| 40 | |||
| 41 | file_put_contents($path, $content); |
||
| 42 | } |
||
| 44 |