Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Link   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 20
rs 10
c 0
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A view() 0 3 1
A destroy() 0 3 1
A edit() 0 3 1
A page() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Marky
5
 * Date: 06/12/2017
6
 * Time: 00:57.
7
 */
8
9
namespace App\Classes\Library\StyleCSS;
10
11
/**
12
 * Class Link.
13
 */
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)
27
    {
28
        return $this->icon('fa-globe', 'blue', $url);
29
    }
30
31
    public function destroy(string $url)
32
    {
33
        return $this->icon('fa-trash', 'grey', $url);
34
    }
35
}
36