ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ArrayBasedRequestWrapper.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
31 {
36  public function __construct(private array $raw_values)
37  {
38  }
39 
40 
44  public function retrieve(string $key, Transformation $transformation)
45  {
46  return $transformation->transform($this->raw_values[$key] ?? null);
47  }
48 
49 
53  public function has(string $key): bool
54  {
55  return isset($this->raw_values[$key]);
56  }
57 
61  public function keys(): array
62  {
63  return array_keys($this->raw_values);
64  }
65 }
transform($from)
Perform the transformation.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
A transformation is a function from one datatype to another.