for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of AppBundle the package.
*
* (c) Ruslan Muriev <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RonteLtd\JsonApiBundle\Annotation;
use Doctrine\Common\Annotations\Annotation;
use RonteLtd\JsonApiBundle\Serializer\Mapping\ClassAnnotationInterface;
/**
* Class Normalize
* @package RonteLtd\JsonApiBundle\Annotation
* @author Ruslan Muriev <[email protected]>
* @Annotation
* @Annotation\Target("CLASS")
class ObjectNormalizer implements ClassAnnotationInterface
{
* @var string
public $name;
* @var array
public $meta;
* @return string
public function getName()
return $this->name;
}
* @param string $name
public function setName(string $name)
$this->name = $name;
* @return array
public function getMeta()
return $this->meta;
* @param array $meta
public function setMeta($meta)
$this->meta = $meta;