Exemple #1
0
 public function __construct(array $ConstantArguments = [])
 {
     parent::__construct(new InvocationGetter($ConstantArguments), new InvocationSetter($ConstantArguments));
 }
Exemple #2
0
 public function __construct($FieldName)
 {
     parent::__construct(new FieldGetter($FieldName), new FieldSetter($FieldName));
 }
Exemple #3
0
 public function __construct($GetterMethodName, $SetterMethodName)
 {
     parent::__construct(new MethodGetter($GetterMethodName), new MethodSetter($SetterMethodName));
 }
Exemple #4
0
 public function __construct($Index)
 {
     $this->Index = $Index;
     parent::__construct(new IndexGetter($Index), new IndexSetter($Index));
 }