| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 1 | public static function first($pattern, $subject, Results\PregObject $object = null): Results\PregObject |
|
| 31 | { |
||
| 32 | 1 | $object = static::pregObject($object); |
|
| 33 | |||
| 34 | 1 | $object->result = \preg_match( |
|
| 35 | 1 | $pattern, |
|
| 36 | 1 | $subject, |
|
| 37 | 1 | $object->matches, |
|
| 38 | 1 | $object->flags, |
|
| 39 | 1 | $object->offset |
|
| 40 | ); |
||
| 41 | |||
| 42 | 1 | return $object; |
|
| 43 | } |
||
| 44 | |||
| 69 |