/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/ReplaceResult.php (757B)
* * 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 ReplaceResult { /** * @readonly * @var string */ public $result; /** * @readonly * @var 0|positive-int */ public $count; /** * @readonly * @var bool */ public $matched; /** * @param 0|positive-int $count */ public function __construct(int $count, string $result) { $this->count = $count; $this->matched = (bool) $count; $this->result = $result; } }