src/Type/SerializationMethod.php
<?php declare(strict_types=1);
namespace FatCode\Hydration\Type;
use FatCode\Enum;
/**
* @method static SerializationMethod SERIALIZE()
* @method static SerializationMethod JSON()
* @method static SerializationMethod NONE()
*/
class SerializationMethod extends Enum
{
public const JSON = 'json';
public const NONE = 'none';
public const SERIALIZE = 'serialize';
}