Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5/**
6 * Copyright (c) 2019-2023 NxtLvl Software Solutions.
7 *
8 * Freely available to use under the terms of the MIT license.
9 */
10
11namespace NxtLvlSoftware\StaticConstructors\Policy\Method\Visibility;
12
13/**
14 * Specifies valid static constructor visibility levels as an enum.
15 *
16 * {@see \NxtLvlSoftware\StaticConstructors\Policy\Method\Visibility\VisibilityMethodPolicy}
17 */
18enum ConstructorVisibility {
19
20    case Public;
21    case Protected;
22    case Private;
23    case None;
24
25}