Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 9... Línea 9...
9
/**
9
/**
10
 * Allow to know if this style must replace actual row style.
10
 * Allow to know if this style must replace actual row style.
11
 *
11
 *
12
 * @internal
12
 * @internal
13
 */
13
 */
14
final class RegisteredStyle
14
final readonly class RegisteredStyle
15
{
15
{
16
    private readonly Style $style;
16
    private Style $style;
Línea 17... Línea 17...
17
 
17
 
Línea 18... Línea 18...
18
    private readonly bool $isMatchingRowStyle;
18
    private bool $isMatchingRowStyle;
19
 
19
 
20
    public function __construct(Style $style, bool $isMatchingRowStyle)
20
    public function __construct(Style $style, bool $isMatchingRowStyle)
21
    {
21
    {