* @license MIT */ class ClassWithMethodWithDefaultParameters { /** * @param array $parameter * * @return string */ public function publicMethodWithDefaults(array $parameter = array('foo')) { return 'defaultValue'; } }