mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-01-17 07:08:14 +01:00
20 lines
466 B
PHP
20 lines
466 B
PHP
|
<?php
|
||
|
|
||
|
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;
|
||
|
}
|