Issues (222)

src/Code/Modifiers/Visibility.php (1 issue)

Labels
Severity
1
<?php declare(strict_types=1);
2
/**
3
 * This source file is subject to the license that is bundled with this package in the file LICENSE.
4
 */
5
6
namespace PhUml\Code\Modifiers;
7
8
/**
9
 * It represents the visibility of either a property or a method
10
 */
11
enum Visibility: string
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING on line 11 at column 5
Loading history...
12
{
13
    case PRIVATE = '-';
14
    case PUBLIC = '+';
15
    case PROTECTED = '#';
16
}
17