Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
Internal
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2namespace Apie\Core\Attributes;
3
4use Attribute;
5
6/**
7 * Mark a property/method/class or anything as internal and try to hide it from any automated process.
8 */
9#[Attribute(Attribute::TARGET_CLASS|Attribute::TARGET_PROPERTY|Attribute::TARGET_METHOD)]
10final class Internal
11{
12}