1
0
mirror of synced 2025-02-03 05:49:25 +03:00

Add return to removeMethodTemplate

This commit is contained in:
Ilya Antipenko 2015-05-13 14:03:50 +03:00 committed by Ilya Antipenko
parent 900b55d16a
commit 6a98f0391d

View File

@ -277,10 +277,12 @@ public function <methodName>(<methodTypeHint>$<variableName>)
* <description> * <description>
* *
* @param <variableType> $<variableName> * @param <variableType> $<variableName>
*
* @return boolean TRUE if this collection contained the specified element, FALSE otherwise.
*/ */
public function <methodName>(<methodTypeHint>$<variableName>) public function <methodName>(<methodTypeHint>$<variableName>)
{ {
<spaces>$this-><fieldName>->removeElement($<variableName>); <spaces>return $this-><fieldName>->removeElement($<variableName>);
}'; }';
/** /**