3 declare(strict_types=1);
25 private string $firstParameter;
26 private int $secondParameter;
27 private string $thirdParameter;
30 string $firstParameter,
32 string $thirdParameter
34 $this->firstParameter = $firstParameter;
35 $this->secondParameter = $secondParameter;
36 $this->thirdParameter = $thirdParameter;
39 public function say():
string 41 return $this->firstParameter;
44 public function getFirstParameter():
string 46 return $this->firstParameter;
49 public function getSecodParameter():
int 51 return $this->secondParameter;
54 public function getThirdParameter():
string 56 return $this->thirdParameter;
64 $transformation =
$refinery->to()->toNew(SomeOtherClass::class);
66 $result = $transformation->transform([
'firstParameter', 2,
'thirdParameter']);
68 return assert(
'firstParameter' === $result->getFirstParameter());
toNewObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
Refinery Factory $refinery