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\Tests\Fixtures;
use RonteLtd\JsonApiBundle\Annotation\Attribute;
use RonteLtd\JsonApiBundle\Annotation\Relationship;
use RonteLtd\JsonApiBundle\Annotation\ObjectNormalizer;
/**
* Class ObjectNormalizerDummy
* @package RonteLtd\JsonApiBundle\Tests\Fixtures
* @author Ruslan Muriev <[email protected]>
* @ObjectNormalizer(name="jsonApiEntityType", meta={"copyright": "copyright", "authors": {"a"}})
class ObjectNormalizerDummy
{
* @Attribute(name="name")
* @var
private $name;
$name
This check marks private properties in classes that are never used. Those properties can be removed.
* @Attribute(name="isEnabled")
* @var boolean
private $enabled;
$enabled
* @Relationship
private $category;
$category
}
This check marks private properties in classes that are never used. Those properties can be removed.