/var/www/vhosts/ihelp.ro/httpdocs/vendor/composer/pcre/src
NameSizeModeActions
MatchAllResult.php9020644editdlrm
MatchAllStrictGroupsResult.php8920644editdlrm
MatchAllWithOffsetsResult.php11770644editdlrm
MatchResult.php7540644editdlrm
MatchStrictGroupsResult.php7560644editdlrm
MatchWithOffsetsResult.php9900644editdlrm
PcreException.php15160644editdlrm
Preg.php174800644editdlrm
Regex.php69030644editdlrm
ReplaceResult.php7420644editdlrm
UnexpectedNullMatchException.php5110644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/composer/pcre/src/ReplaceResult.php (742B)
* * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace 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; } }