| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | public function getParameters($permalink) |
||
| 45 | { |
||
| 46 | $parameters = explode('/', $permalink); |
||
| 47 | |||
| 48 | if (4 !== \count($parameters)) { |
||
| 49 | throw new \InvalidArgumentException('wrong permalink format'); |
||
| 50 | } |
||
| 51 | |||
| 52 | list($year, $month, $day, $slug) = $parameters; |
||
| 53 | |||
| 54 | return [ |
||
| 55 | 'year' => (int) $year, |
||
| 56 | 'month' => (int) $month, |
||
| 57 | 'day' => (int) $day, |
||
| 58 | 'slug' => $slug, |
||
| 59 | ]; |
||
| 60 | } |
||
| 61 | } |
||
| 62 |