We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class Link extends Icons |
||
| 15 | { |
||
| 16 | public function edit(string $url) |
||
| 17 | { |
||
| 18 | return $this->icon('fa-pencil', 'blue', $url); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function page(string $url) |
||
| 22 | { |
||
| 23 | return $this->icon('fa-paperclip', 'blue', $url); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function view(string $url) |
||
| 29 | } |
||
| 30 | |||
| 31 | public function destroy(string $url) |
||
| 34 | } |
||
| 35 | } |
||
| 36 |