1 | <?php |
||
10 | final class ExtendedMatch implements CreatableFromArray |
||
11 | { |
||
12 | /** |
||
13 | * @var array |
||
14 | */ |
||
15 | private $profiles; |
||
16 | |||
17 | /** |
||
18 | * @var bool |
||
19 | */ |
||
20 | private $complete; |
||
21 | |||
22 | /** |
||
23 | * @param array $profiles |
||
24 | * @param bool $complete |
||
25 | */ |
||
26 | private function __construct(array $profiles, $complete) |
||
31 | |||
32 | /** |
||
33 | * @param array $data |
||
34 | * |
||
35 | * @return |
||
36 | */ |
||
37 | public static function createFromArray(array $data) |
||
41 | |||
42 | /** |
||
43 | * @return array |
||
44 | */ |
||
45 | public function getProfiles() |
||
49 | |||
50 | /** |
||
51 | * @return bool |
||
52 | */ |
||
53 | public function isComplete() |
||
57 | } |
||
58 |