| Conditions | 4 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function IsDraftSportValid($draft_sport) { |
||
| 16 | $valid = true; |
||
| 17 | $errors = array(); |
||
| 18 | $draft_sports = $this->app['phpdraft.DraftDataRepository']->GetSports(); |
||
| 19 | |||
| 20 | if (strlen($draft_sport) < 3 || strlen($draft_sport) > 4 || strlen($draft_sports[$draft_sport]) == 0) { |
||
| 21 | $errors[] = "Draft sport is an invalid value."; |
||
| 22 | $valid = false; |
||
| 23 | } |
||
| 24 | |||
| 25 | return $this->app['phpdraft.ResponseFactory']($valid, $errors); |
||
| 26 | } |
||
| 60 | } |