ILIAS  trunk Revision v11.0_alpha-1749-g1a06bdef097
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NullManipulator.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
26 {
27  public function prepareCreateOrUpdate(
29  string ...$values
31  return new NullManipulator();
32  }
33 
34  public function prepareForceCreate(
36  string ...$values
38  return new NullManipulator();
39  }
40 
42  {
43  return new NullManipulator();
44  }
45 
46  public function execute(): void
47  {
48  }
49 }
prepareDelete(PathInterface $path)
All elements specified by the path are set to be deleted.
$path
Definition: ltiservices.php:29
prepareForceCreate(PathInterface $path, string ... $values)
New elements are set to be created as specified by the path, and filled with the values.
prepareCreateOrUpdate(PathInterface $path, string ... $values)
The values are set to be inserted into the elements specified by the path in order.