29 return "<?" .
"php return " . var_export($this->data,
true) .
";";
34 foreach ($a as $item) {
35 if (is_string($item) || is_int($item) || is_float($item) || is_bool($item) || is_null($item)) {
38 if (is_array($item)) {
42 throw new \InvalidArgumentException(
43 "Array data for artifact may only contain ints, strings, floats, bools or " .
44 "other arrays with this content. Found: " . gettype($item)
serialize()
This method will be called from the source, which wants to save the artifact.
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples