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