3 declare(strict_types=1);
78 if (is_null($this->limit)) {
80 $data = $this->
raw(self::FIELD_LIMIT);
84 $this->limit = (int) $data;
98 if (is_null($this->offset)) {
100 $data = $this->
raw(self::FIELD_OFFSET);
101 if (is_null($data)) {
104 $this->offset = (int) $data;
118 if (is_null($this->count)) {
120 $data = $this->
raw(self::FIELD_COUNT);
121 if (is_null($data)) {
124 $this->count = (int) $data;
142 if (is_null($this->total)) {
144 $data = $this->
raw(self::FIELD_TOTAL);
145 if (is_null($data)) {
148 $this->total = (int) $data;
162 if (is_null($this->results)) {
164 $data = $this->
raw(self::FIELD_RESULTS);
165 if (is_null($data)) {
__construct(?int $limit=null, ?int $offset=null, ?int $count=null, ?int $total=null, ?ChannelCollection $results=null)
setResults(?ChannelCollection $results)