/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/MatchWithOffsetsResult.php (1006B)
* * 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 MatchWithOffsetsResult { /** * An array of match group => pair of string matched + offset in bytes (or -1 if no match) * * @readonly * @var array * @phpstan-var array}> */ public $matches; /** * @readonly * @var bool */ public $matched; /** * @param 0|positive-int $count * @param array $matches * @phpstan-param array}> $matches */ public function __construct(int $count, array $matches) { $this->matches = $matches; $this->matched = (bool) $count; } }