/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/MatchResult.php (754B)
* * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace Composer\Pcre; final class MatchResult { /** * An array of match group => string matched * * @readonly * @var array */ public $matches; /** * @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; } }