Skip to content

Commit 2dee45c

Browse files
authored
Merge pull request #55 from eppinger/development
(style) added missing space in the function signature documentation
2 parents 494c7d6 + 558a844 commit 2dee45c

14 files changed

+43
-43
lines changed

interfaces/IValidator.cfc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ interface {
88

99
/**
1010
* Will check if an incoming value validates
11-
* @validationResultThe result object of the validation
12-
* @targetThe target object to validate on
13-
* @fieldThe field on the target object to validate on
14-
* @targetValueThe target value to validate
11+
* @validationResult The result object of the validation
12+
* @target The target object to validate on
13+
* @field The field on the target object to validate on
14+
* @targetValue The target value to validate
1515
* @rules The rules imposed on the currently validating field
1616
*/
1717
boolean function validate(

models/validators/AlphaValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ component
2121
/**
2222
* Will check if an incoming value validates
2323
*
24-
* @validationResultThe result object of the validation
25-
* @targetThe target object to validate on
26-
* @fieldThe field on the target object to validate on
24+
* @validationResult The result object of the validation
25+
* @target The target object to validate on
26+
* @field The field on the target object to validate on
2727
* @targetValue The target value to validate
2828
* @validationData The validation data the validator was created with
2929
* @rules The rules imposed on the currently validating field

models/validators/DiscreteValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @validationData The validation data the validator was created with
2828
* @rules The rules imposed on the currently validating field

models/validators/InListValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/MaxValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/MinValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/RangeValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/RegexValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @rules The rules imposed on the currently validating field
2828
*/

models/validators/RequiredValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @validationData The validation data the validator was created with
2828
* @rules The rules imposed on the currently validating field

models/validators/SameAsNoCaseValidator.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ component
2020

2121
/**
2222
* Will check if an incoming value validates
23-
* @validationResultThe result object of the validation
24-
* @targetThe target object to validate on
25-
* @fieldThe field on the target object to validate on
23+
* @validationResult The result object of the validation
24+
* @target The target object to validate on
25+
* @field The field on the target object to validate on
2626
* @targetValue The target value to validate
2727
* @validationData The validation data the validator was created with
2828
* @rules The rules imposed on the currently validating field

0 commit comments

Comments
 (0)