getDefaultValue() public method

Returns potential default value
public getDefaultValue ( ) : mixed
return mixed
Example #1
0
 /**
  * @param StructAttributeModel $attribute
  * @param bool $lowCaseFirstLetter
  * @param mixed $defaultValue
  * @return PhpFunctionParameter
  */
 protected function getStructMethodParameter(StructAttributeModel $attribute, $lowCaseFirstLetter = false, $defaultValue = null)
 {
     try {
         return new PhpFunctionParameter($lowCaseFirstLetter ? lcfirst($attribute->getCleanName()) : $attribute->getCleanName(), isset($defaultValue) ? $defaultValue : $attribute->getDefaultValue(), $this->getStructMethodParameterType($attribute));
     } catch (\InvalidArgumentException $exception) {
         throw new \InvalidArgumentException(sprintf('Unable to create function parameter for struct "%s" with type "%s" for attribute "%s"', $this->getModel()->getName(), var_export($this->getStructMethodParameterType($attribute), true), $attribute->getName()), __LINE__, $exception);
     }
 }