for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dontdrinkandroot\RestBundle\Metadata\Annotation;
use Doctrine\ORM\Mapping\Annotation;
/**
* @Annotation
* @Target({"PROPERTY"})
*
* @author Philip Washington Sorst <[email protected]>
*/
class Postable extends Writeable
{
public static function parse($config): ?Postable
return self::parseInstance($config, new Postable());
}