for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Apie\OpenapiSchema\Map;
use Apie\CompositeValueObjects\ValueObjectHashmapTrait;
use Apie\CompositeValueObjects\ValueObjectListInterface;
use Apie\OpenapiSchema\Spec\Encoding;
use Apie\TypeJuggling\AnotherValueObject;
use Apie\TypeJuggling\TypeUtilInterface;
class EncodingMap implements ValueObjectListInterface
{
use ValueObjectHashmapTrait;
protected static function getWantedType(string $fieldName): TypeUtilInterface
return new AnotherValueObject($fieldName, Encoding::class);
}