19 declare(strict_types=1);
21 require_once(
"vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
40 $this->createMock(UploadLimitResolver::class),
41 new C\SignalGenerator(),
58 return new ViewControl\Factory(
62 new C\SignalGenerator(),
69 return new ViewControlContainer\Factory(
70 new C\SignalGenerator(),
77 return new C\Table\Factory(
78 new C\SignalGenerator(),
85 new C\
Table\DataRowBuilder(),
86 new C\
Table\OrderingRowBuilder()
93 protected array
$data = [];
94 public function offsetExists(mixed $offset):
bool 96 return isset($this->data[$offset]);
98 public function offsetGet(mixed $offset): mixed
100 if(!$this->offsetExists($offset)) {
103 return $this->data[$offset];
105 public function offsetSet(mixed $offset, mixed $value):
void 107 $this->data[$offset] = $value;
109 public function offsetUnset(mixed $offset):
void 111 unset($this->data[$offset]);
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Basic Tests for all Tables.
getViewControlContainerFactory()