| Total Complexity | 10 | 
| Total Lines | 65 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 7 | class TagInfo extends TikTok | ||
| 8 | { | ||
| 9 | protected $url; | ||
| 10 | protected $arrayPrimary; | ||
| 11 | protected $arraySecondary; | ||
| 12 | |||
| 13 | /** | ||
| 14 | * @return $this | ||
| 15 | */ | ||
| 16 | public function ModelSettings() | ||
| 17 |     { | ||
| 18 |         $this->url = config('tiktok.tag_info.link'); | ||
| 19 |         $this->arrayPrimary = config('tiktok.tag_info.array_primary'); | ||
| 20 |         $this->arraySecondary = config('tiktok.tag_info.array_secondary'); | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @param string $tag | ||
| 25 | * @return array | ||
| 26 | */ | ||
| 27 | public function getTag($tag) | ||
| 45 | } | ||
| 46 | |||
| 47 | /** | ||
| 48 | * @param string $tag | ||
| 49 | * @return array | ||
| 50 | */ | ||
| 51 | public function getTagInfo($tag) | ||
| 74 |