Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
BinaryStream | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getSchema | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\Core\ValueObjects; |
3 | |
4 | use Apie\Core\Attributes\CmsSingleInput; |
5 | use Apie\Core\Attributes\SchemaMethod; |
6 | use Apie\Core\Dto\CmsInputOption; |
7 | use Apie\Core\Enums\FileStreamType; |
8 | use Apie\Core\ValueObjects\Interfaces\StringValueObjectInterface; |
9 | |
10 | #[SchemaMethod("getSchema")] |
11 | #[CmsSingleInput(['stream', 'file'], new CmsInputOption(streamType: FileStreamType::BinaryString))] |
12 | final class BinaryStream implements StringValueObjectInterface |
13 | { |
14 | use IsStringValueObject; |
15 | |
16 | /** |
17 | * @return array<string, string> |
18 | */ |
19 | public static function getSchema(): array |
20 | { |
21 | return [ |
22 | 'type' => 'string', |
23 | 'format' => 'binary' |
24 | ]; |
25 | } |
26 | } |