Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
BinaryStream
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 getSchema
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Core\ValueObjects;
3
4use Apie\Core\Attributes\CmsSingleInput;
5use Apie\Core\Attributes\SchemaMethod;
6use Apie\Core\Dto\CmsInputOption;
7use Apie\Core\Enums\FileStreamType;
8use Apie\Core\ValueObjects\Interfaces\StringValueObjectInterface;
9
10#[SchemaMethod("getSchema")]
11#[CmsSingleInput(['stream', 'file'], new CmsInputOption(streamType: FileStreamType::BinaryString))]
12final 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}