return new PropertyWriteInfo(PropertyWriteInfo::TYPE_CONSTRUCTOR,
$property);
} } } [$adderAccessName,
$removerAccessName,
$adderAndRemoverErrors] =
$this->
findAdderAndRemover($reflClass,
$singulars);
if ($allowAdderRemover && null !==
$adderAccessName && null !==
$removerAccessName) { $adderMethod =
$reflClass->
getMethod($adderAccessName);
$removerMethod =
$reflClass->
getMethod($removerAccessName);
$mutator =
new PropertyWriteInfo(PropertyWriteInfo::TYPE_ADDER_AND_REMOVER
);
$mutator->
setAdderInfo(new PropertyWriteInfo(PropertyWriteInfo::TYPE_METHOD,
$adderAccessName,
$this->
getWriteVisiblityForMethod($adderMethod),
$adderMethod->
isStatic()));
$mutator->
setRemoverInfo(new PropertyWriteInfo(PropertyWriteInfo::TYPE_METHOD,
$removerAccessName,
$this->
getWriteVisiblityForMethod($removerMethod),
$removerMethod->
isStatic()));
return $mutator;
} $errors[] =
$adderAndRemoverErrors;
foreach ($this->mutatorPrefixes
as $mutatorPrefix) { $methodName =
$mutatorPrefix.
$camelized;
[$accessible,
$methodAccessibleErrors] =
$this->
isMethodAccessible($reflClass,
$methodName, 1
);