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