Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3
4
5if (PHP_VERSION_ID >= 80400) {
6    eval('
7    namespace Apie\Fixtures\Php84;
8    use Apie\Core\Dto\DtoInterface;
9    class AsyncVisibility implements DtoInterface
10    {
11        public function __construct(
12            public readonly string $name,
13            public private(set) string $option
14        ) {
15        }
16    }');
17}