Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
/*
4
 * This file is part of composer/pcre.
5
 *
6
 * (c) Composer <https://github.com/composer>
7
 *
8
 * For the full copyright and license information, please view
9
 * the LICENSE file that was distributed with this source code.
10
 */
11
 
12
namespace Composer\Pcre;
13
 
14
final class MatchResult
15
{
16
    /**
17
     * An array of match group => string matched
18
     *
19
     * @readonly
20
     * @var array<int|string, string|null>
21
     */
22
    public $matches;
23
 
24
    /**
25
     * @readonly
26
     * @var bool
27
     */
28
    public $matched;
29
 
30
    /**
31
     * @param 0|positive-int $count
32
     * @param array<string|null> $matches
33
     */
34
    public function __construct(int $count, array $matches)
35
    {
36
        $this->matches = $matches;
37
        $this->matched = (bool) $count;
38
    }
39
}