Completed
Push — master ( 7765d3...4fbe8e )
by Freek
02:23 queued 01:07
created

Site::brokenLinks()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace OhDear\PhpSdk\Resources;
4
5
class Site extends ApiResource
6
{
7
    /**
8
     * The id of the site.
9
     *
10
     * @var int
11
     */
12
    public $id;
13
14
    /**
15
     * The url of the site.
16
     *
17
     * @var string
18
     */
19
    public $url;
20
21
    /**
22
     * The checks of a site.
23
     *
24
     * @var Check[]
25
     */
26
    public $checks;
27
28
    /**
29
     * The sort url of the site.
30
     *
31
     * @var string
32
     */
33
    public $sortUrl;
34
35
    public function __construct(array $attributes, $ohDear = null)
36
    {
37
        parent::__construct($attributes, $ohDear);
38
39
        $this->checks = array_map(function (array $checkAttributes) {
40
            return new Check($checkAttributes);
41
        }, $this->checks);
42
    }
43
44
    /**
45
     * Delete the given site.
46
     *
47
     * @return void
48
     */
49
    public function delete()
50
    {
51
        $this->ohDear->deleteSite($this->id);
52
    }
53
54
    /**
55
     * Get the broken links for this site.
56
     *
57
     * @return array
58
     */
59
    public function brokenLinks()
60
    {
61
        return $this->ohDear->brokenLinks($this->id);
62
    }
63
64
    /**
65
     * Get the detected mixed content for a site.
66
     *
67
     * @return array
68
     */
69
    public function mixedContent()
70
    {
71
        return $this->ohDear->mixedContent($this->id);
72
    }
73
}
74