1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Composer\Pcre;
- final class MatchWithOffsetsResult
- {
-
- public $matches;
-
- public $matched;
-
- public function __construct(int $count, array $matches)
- {
- $this->matches = $matches;
- $this->matched = (bool) $count;
- }
- }
|