Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
| IngestResult | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| uid | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Cosray\Assets; |
| 6 | |
| 7 | final readonly class IngestResult |
| 8 | { |
| 9 | public function __construct( |
| 10 | public array $row, |
| 11 | public bool $created, |
| 12 | ) {} |
| 13 | |
| 14 | public function uid(): string |
| 15 | { |
| 16 | return (string) $this->row['uid']; |
| 17 | } |
| 18 | } |