mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-01-17 15:18:17 +01:00
20 lines
491 B
PHP
20 lines
491 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser;
|
|
|
|
/**
|
|
* Modifiers used (as a bit mask) by various flags subnodes, for example on classes, functions,
|
|
* properties and constants.
|
|
*/
|
|
final class Modifiers {
|
|
public const PUBLIC = 1;
|
|
public const PROTECTED = 2;
|
|
public const PRIVATE = 4;
|
|
public const STATIC = 8;
|
|
public const ABSTRACT = 16;
|
|
public const FINAL = 32;
|
|
public const READONLY = 64;
|
|
|
|
public const VISIBILITY_MASK = 1 | 2 | 4;
|
|
}
|