| 1 | <?php |
||
| 16 | class Attendees extends Property |
||
| 17 | { |
||
| 18 | /** @var Property[] */ |
||
| 19 | protected $attendees = []; |
||
| 20 | |||
| 21 | public function __construct() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param $value |
||
| 28 | * @param array $params |
||
| 29 | * |
||
| 30 | * @return $this |
||
| 31 | */ |
||
| 32 | public function add($value, $params = []) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function toLines() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * {@inheritdoc} |
||
| 54 | */ |
||
| 55 | public function getName() |
||
| 59 | } |
||
| 60 |