| Total Complexity | 4 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Rotate |
||
| 11 | { |
||
| 12 | public function files(array $filenames) |
||
| 13 | { |
||
| 14 | array_walk($filenames, function ($filename) { |
||
| 15 | $this->file($filename); |
||
| 16 | }); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function file(string $filename, array $options = []): bool |
||
| 28 | } |
||
| 29 | |||
| 30 | private function buildRotateDefault(array $options = []): Rotation |
||
| 48 |