Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
eventresult.php
1<?php
10
11
13{
14 protected $isAccess = null;
15
16 public function allowAccess(): self
17 {
18 $this->isAccess = true;
19 return $this;
20 }
21 public function forbidAccess(): self
22 {
23 $this->isAccess = false;
24 return $this;
25 }
26
27 public function isAccess(): ?bool
28 {
29 return $this->isAccess;
30 }
31}