| Conditions | 3 |
| Paths | 4 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); defined('BASEPATH') OR exit('No direct script access allowed'); |
||
| 11 | public function getChapterData(string $title_url, string $chapter) : array { |
||
| 12 | //LANG/VOLUME/CHAPTER/CHAPTER_EXTRA(/page/) |
||
| 13 | $chapter_parts = explode('/', $chapter); |
||
| 14 | return [ |
||
| 15 | 'url' => "http://www.merakiscans.com/reader/read/{$title_url}/{$chapter}/", |
||
| 16 | 'number' => ($chapter_parts[1] !== '0' ? "v{$chapter_parts[1]}/" : '') . "c{$chapter_parts[2]}" . (isset($chapter_parts[3]) ? ".{$chapter_parts[3]}" : '')/*)*/ |
||
| 17 | ]; |
||
| 18 | } |
||
| 19 | |||
| 25 |