MatchAllResult.php 902 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /*
  3. * This file is part of composer/pcre.
  4. *
  5. * (c) Composer <https://github.com/composer>
  6. *
  7. * For the full copyright and license information, please view
  8. * the LICENSE file that was distributed with this source code.
  9. */
  10. namespace Composer\Pcre;
  11. final class MatchAllResult
  12. {
  13. /**
  14. * An array of match group => list of matched strings
  15. *
  16. * @readonly
  17. * @var array<int|string, list<string|null>>
  18. */
  19. public $matches;
  20. /**
  21. * @readonly
  22. * @var 0|positive-int
  23. */
  24. public $count;
  25. /**
  26. * @readonly
  27. * @var bool
  28. */
  29. public $matched;
  30. /**
  31. * @param 0|positive-int $count
  32. * @param array<int|string, array<string|null>> $matches
  33. */
  34. public function __construct(int $count, array $matches)
  35. {
  36. $this->matches = $matches;
  37. $this->matched = (bool) $count;
  38. $this->count = $count;
  39. }
  40. }