Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| UserTypeValidator | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |
100.00% |
1 / 1 |
| isValid($userType) | |
100.00% |
1 / 1 |
2 | |
100.00% |
1 / 1 |
|||
| <?php | |
| namespace Tdd; | |
| class UserTypeValidator implements IValidator | |
| { | |
| public function isValid($userType) | |
| { | |
| return is_string($userType) && in_array($userType, array('local', 'facebook', 'google')); | |
| } | |
| } |