1 | <?php |
||
15 | class DDC964User |
||
16 | { |
||
17 | /** |
||
18 | * @ORM\Id |
||
19 | * @ORM\GeneratedValue |
||
20 | * @ORM\Column(type="integer", name="user_id") |
||
21 | */ |
||
22 | protected $id; |
||
23 | |||
24 | /** |
||
25 | * @ORM\Column(name="user_name", nullable=true, unique=false, length=250) |
||
26 | */ |
||
27 | protected $name; |
||
28 | |||
29 | /** |
||
30 | * @var ArrayCollection |
||
31 | * |
||
32 | * @ORM\ManyToMany(targetEntity="DDC964Group", inversedBy="users", cascade={"persist"}) |
||
33 | * @ORM\JoinTable(name="ddc964_users_groups", |
||
34 | * joinColumns={@ORM\JoinColumn(name="user_id", referencedColumnName="id")}, |
||
35 | * inverseJoinColumns={@ORM\JoinColumn(name="group_id", referencedColumnName="id")} |
||
36 | * ) |
||
37 | */ |
||
38 | protected $groups; |
||
39 | |||
40 | /** |
||
41 | * @var DDC964Address |
||
42 | * |
||
43 | * @ORM\ManyToOne(targetEntity="DDC964Address", cascade={"persist"}) |
||
44 | * @ORM\JoinColumn(name="address_id", referencedColumnName="id") |
||
45 | */ |
||
46 | protected $address; |
||
47 | |||
48 | /** |
||
49 | * @param string $name |
||
50 | */ |
||
51 | public function __construct($name = null) |
||
56 | |||
57 | /** |
||
58 | * @return int |
||
59 | */ |
||
60 | public function getId() |
||
64 | |||
65 | /** |
||
66 | * @return string |
||
67 | */ |
||
68 | public function getName() |
||
72 | |||
73 | /** |
||
74 | * @param string $name |
||
75 | */ |
||
76 | public function setName($name) |
||
80 | |||
81 | /** |
||
82 | * @param DDC964Group $group |
||
83 | */ |
||
84 | public function addGroup(DDC964Group $group) |
||
89 | |||
90 | /** |
||
91 | * @return ArrayCollection |
||
92 | */ |
||
93 | public function getGroups() |
||
97 | |||
98 | /** |
||
99 | * @return DDC964Address |
||
100 | */ |
||
101 | public function getAddress() |
||
105 | |||
106 | /** |
||
107 | * @param DDC964Address $address |
||
108 | */ |
||
109 | public function setAddress(DDC964Address $address) |
||
113 | |||
114 | public static function loadMetadata(Mapping\ClassMetadata $metadata) |
||
177 | } |
||
178 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.