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::destroy()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
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