Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| CmsIcon | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace Apie\Core\Attributes; |
| 4 | |
| 5 | /** |
| 6 | * Define an icon for the CMs to display |
| 7 | */ |
| 8 | #[\Attribute(\Attribute::TARGET_CLASS)] |
| 9 | class CmsIcon |
| 10 | { |
| 11 | public function __construct(public readonly string $icon) |
| 12 | { |
| 13 | } |
| 14 | } |