Fixed PHPdoc return references in FormBuilderInterface

This commit is contained in:
Javan Eskander 2017-06-08 17:18:54 +10:00
parent ccb6543839
commit 2f350d1d38
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ interface FormBuilderInterface extends \Traversable, \Countable, FormConfigBuild
* @param string|FormTypeInterface $type * @param string|FormTypeInterface $type
* @param array $options * @param array $options
* *
* @return $this * @return self
*/ */
public function add($child, $type = null, array $options = array()); public function add($child, $type = null, array $options = array());
@ -58,7 +58,7 @@ interface FormBuilderInterface extends \Traversable, \Countable, FormConfigBuild
* *
* @param string $name * @param string $name
* *
* @return $this * @return self
*/ */
public function remove($name); public function remove($name);