Lines Matching refs:objects
21 protected $objects = []; variable in Sabre\\VObject\\BirthdayCalendarGenerator
42 * @param mixed $objects
44 function __construct($objects = null) { argument
46 if ($objects) {
47 $this->setObjects($objects);
58 * @param mixed $objects
62 function setObjects($objects) { argument
64 if (!is_array($objects)) {
65 $objects = [$objects];
68 $this->objects = [];
69 foreach ($objects as $object) {
78 $this->objects[] = $vObj;
82 $this->objects[] = $object;
116 foreach ($this->objects as $object) {