for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Happyr\SerializerBundle\Annotation;
/**
* @Annotation
* @Target({"PROPERTY"})
*
* @author Tobias Nyholm <[email protected]>
*/
final class Type implements SerializerAnnotation
{
public $value;
public function getName()
return 'type';
}
public function getValue()
return $this->value;