1 | <?php |
||
9 | class License extends AbstractModel implements Arrayable { |
||
10 | |||
11 | use UrlPart; |
||
12 | use ExtensionPart; |
||
13 | |||
14 | /** @var string */ |
||
15 | private $name; |
||
16 | |||
17 | 11 | public function __construct($contents = []) { |
|
20 | |||
21 | 11 | private function parse($contents = []) { |
|
30 | |||
31 | 8 | public function toArray() { |
|
34 | |||
35 | /** |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | 1 | public function getName() { |
|
42 | |||
43 | /** |
||
44 | * |
||
45 | * @param string $name |
||
46 | * @return $this |
||
47 | */ |
||
48 | 1 | public function setName($name) { |
|
52 | |||
53 | } |
||
54 |