BaseSolution.php
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace Facade\IgnitionContracts;
class BaseSolution implements Solution
{
    protected $title;
    protected $description;
    protected $links = [];
    public static function create(string $title)
    {
        return new static($title);
    }
    public function __construct(string $title)
    {
        $this->title = $title;
    }
    public function getSolutionTitle(): string
    {
        return $this->title;
    }
    public function setSolutionTitle(string $title): self
    {
        $this->title = $title;
        return $this;
    }
    public function getSolutionDescription(): string
    {
        return $this->description;
    }
    public function setSolutionDescription(string $description): self
    {
        $this->description = $description;
        return $this;
    }
    public function getDocumentationLinks(): array
    {
        return $this->links;
    }
    public function setDocumentationLinks(array $links): self
    {
        $this->links = $links;
        return $this;
    }
}