Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Jun 17, 2015
1 parent 5a2fefe commit a1e3965
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Forms/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ protected function attached($obj)

/**
* Returns self.
* @return Form
* @return self
*/
public function getForm($need = TRUE)
{
Expand Down
6 changes: 3 additions & 3 deletions src/Forms/Rules.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function addRule($validator, $message = NULL, $arg = NULL)
* Adds a validation condition and returns new branch.
* @param mixed condition type
* @param mixed optional condition arguments
* @return Rules new branch
* @return self new branch
*/
public function addCondition($validator, $arg = NULL)
{
Expand All @@ -109,7 +109,7 @@ public function addCondition($validator, $arg = NULL)
* @param IControl form control
* @param mixed condition type
* @param mixed optional condition arguments
* @return Rules new branch
* @return self new branch
*/
public function addConditionOn(IControl $control, $validator, $arg = NULL)
{
Expand All @@ -128,7 +128,7 @@ public function addConditionOn(IControl $control, $validator, $arg = NULL)

/**
* Adds a else statement.
* @return Rules else branch
* @return self else branch
*/
public function elseCondition()
{
Expand Down

0 comments on commit a1e3965

Please sign in to comment.