Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
PrivateVisibilityPolicy
n/a
0 / 0
n/a
0 / 0
0
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 * Method policy for enforcing a static constructor candidate method has private visibility.
15 */
16final class PrivateVisibilityPolicy extends VisibilityMethodPolicy {
17
18    protected const VISIBILITY = ConstructorVisibility::Private;
19
20}