Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
18 | public function getRandom(): Xkcd |
||
19 | { |
||
20 | // 1851th is the last xkcd's comic available at the time of writing this. |
||
21 | $number = random_int(1, 1851); |
||
22 | |||
23 | $response = file_get_contents(sprintf(self::XKCD_JSON_URL, $number)); |
||
24 | $xkcd = json_decode($response, true); |
||
25 | |||
26 | return new Xkcd( |
||
27 | sprintf(self::XKCD_URL, $number), |
||
28 | $xkcd['img'], |
||
29 | $xkcd['alt'] |
||
30 | ); |
||
31 | } |
||
32 | } |
||
33 |