ObjectNormalizerDummy
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 23
1
<?php
2
/*
3
 * This file is part of AppBundle the package.
4
 *
5
 * (c) Ruslan Muriev <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace RonteLtd\JsonApiBundle\Tests\Fixtures;
12
13
use RonteLtd\JsonApiBundle\Annotation\Attribute;
14
use RonteLtd\JsonApiBundle\Annotation\Relationship;
15
use RonteLtd\JsonApiBundle\Annotation\ObjectNormalizer;
16
17
/**
18
 * Class ObjectNormalizerDummy
19
 *
20
 * @package RonteLtd\JsonApiBundle\Tests\Fixtures
21
 * @author Ruslan Muriev <[email protected]>
22
 *
23
 * @ObjectNormalizer(name="jsonApiEntityType", meta={"copyright": "copyright", "authors": {"a"}})
24
 */
25
class ObjectNormalizerDummy
26
{
27
    /**
28
     * @Attribute(name="name")
29
     *
30
     * @var
31
     */
32
    private $name;
0 ignored issues
show
Unused Code introduced by
The property $name is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
33
34
    /**
35
     * @Attribute(name="isEnabled")
36
     *
37
     * @var boolean
38
     */
39
    private $enabled;
0 ignored issues
show
Unused Code introduced by
The property $enabled is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
40
41
    /**
42
     * @Relationship
43
     *
44
     * @var
45
     */
46
    private $category;
0 ignored issues
show
Unused Code introduced by
The property $category is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
47
}