for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultuurNet\UDB3\Offer;
use ValueObjects\Enum\Enum;
/**
* @method static OfferType EVENT()
* @method static OfferType PLACE()
*/
class OfferType extends Enum
{
const EVENT = 'Event';
const PLACE = 'Place';
public static function fromCaseInsensitiveValue($value)
return self::fromNative(ucfirst(strtolower($value)));
}