Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Url |
||
12 | { |
||
13 | public static $baseUrl = 'https://www.instagram.com'; |
||
14 | |||
15 | public static function account($username) |
||
16 | { |
||
17 | return static::$baseUrl . str_replace('{username}', $username, '/{username}/'); |
||
18 | } |
||
19 | |||
20 | public static function post($shortCode) |
||
23 | } |
||
24 | |||
25 | public static function location($id, $slug = null) |
||
33 | } |
||
34 | |||
35 | public static function tag($tag) |
||
38 | } |
||
39 | } |