1 | <?php |
||
6 | class PermaClassroom |
||
7 | { |
||
8 | use ClassroomTrait; |
||
9 | |||
10 | /** |
||
11 | * @param string $title |
||
12 | * @param string $presenterEmail |
||
13 | */ |
||
14 | 9 | private function __construct($title, $presenterEmail) |
|
19 | |||
20 | /** |
||
21 | * @param string $title |
||
22 | * @param string $presenterEmail |
||
23 | * @return self |
||
24 | */ |
||
25 | 9 | public static function build($title, $presenterEmail) |
|
29 | |||
30 | /** |
||
31 | * @return array |
||
32 | */ |
||
33 | 8 | public function toArray() |
|
47 | } |
||
48 |