| Conditions | 4 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | public function passes($attribute, $value) |
||
| 27 | { |
||
| 28 | if (!isset($this->data['thing']) || ($this->data['thing'] != '1')) { // Ikke bibsys-dok: |
||
|
|
|||
| 29 | return true; |
||
| 30 | } |
||
| 31 | if (!preg_match('/[0-9]/', $value)) { // Inneholder ikke tall: antakelig et navn |
||
| 32 | return true; |
||
| 33 | } |
||
| 34 | return substr($value, 0, 2) == 'uo'; |
||
| 35 | } |
||
| 47 |