/opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/composer/pcre/src
NameSizeModeActions
PHPStan/-0755rm
MatchAllResult.php9160644editdlrm
MatchAllStrictGroupsResult.php9060644editdlrm
MatchAllWithOffsetsResult.php11920644editdlrm
MatchResult.php7700644editdlrm
MatchStrictGroupsResult.php7720644editdlrm
MatchWithOffsetsResult.php10060644editdlrm
PcreException.php15440644editdlrm
Preg.php177490644editdlrm
Regex.php73730644editdlrm
ReplaceResult.php7570644editdlrm
UnexpectedNullMatchException.php5350644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/composer/pcre/src/MatchAllResult.php (916B)
* * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace RectorPrefix202411\Composer\Pcre; final class MatchAllResult { /** * An array of match group => list of matched strings * * @readonly * @var array> */ public $matches; /** * @readonly * @var 0|positive-int */ public $count; /** * @readonly * @var bool */ public $matched; /** * @param 0|positive-int $count * @param array> $matches */ public function __construct(int $count, array $matches) { $this->matches = $matches; $this->matched = (bool) $count; $this->count = $count; } }