Lines Matching refs:objects
33 protected $objects = []; variable in Sabre\\VObject\\FreeBusyGenerator
89 * @param mixed $objects
92 …function __construct(DateTimeInterface $start = null, DateTimeInterface $end = null, $objects = nu… argument
96 if ($objects) {
97 $this->setObjects($objects);
142 * @param mixed $objects
146 function setObjects($objects) { argument
148 if (!is_array($objects)) {
149 $objects = [$objects];
152 $this->objects = [];
153 foreach ($objects as $object) {
156 $this->objects[] = Reader::read($object);
158 $this->objects[] = $object;
221 $this->calculateBusy($fbData, $this->objects);
397 * @param VCalendar[] $objects
399 protected function calculateBusy(FreeBusyData $fbData, array $objects) { argument
401 foreach ($objects as $key => $object) {
432 unset($this->objects[$key]);