| 1 | <?php | ||
| 19 | class Rewrite extends DataObject implements RewriteInterface | ||
| 20 | { | ||
| 21 | /** | ||
| 22 | * @return string | ||
| 23 | */ | ||
| 24 | public function getFileName(): string | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @param string $fileName | ||
| 31 | * @return void | ||
| 32 | */ | ||
| 33 | public function setFileName(string $fileName) | ||
| 37 | |||
| 38 | /** | ||
| 39 | * @return string | ||
| 40 | */ | ||
| 41 | public function getFileContent(): string | ||
| 45 | |||
| 46 | /** | ||
| 47 | * @param string $fileContent | ||
| 48 | * @return void | ||
| 49 | */ | ||
| 50 | public function setFileContent(string $fileContent) | ||
| 54 | } | ||
| 55 |