It seems like new \DateTime() of type object<DateTime> is incompatible with the declared type object<Eo\HoneypotBundle\Model\DateTime> of property $createdAt.
Our type inference engine has found an assignment to a property that is incompatible
with the declared type of that property.
Either this assignment is in error or the assigned type should be added
to the documentation/type hint for that property..
Loading history...
43
}
44
45
/**
46
* Get id
47
*
48
* @return string $id
49
*/
50
public function getId()
51
{
52
return $this->id;
53
}
54
55
/**
56
* Set ip
57
*
58
* @param string $ip
59
* @return self
60
*/
61
public function setIp($ip)
62
{
63
$this->ip = $ip;
64
65
return $this;
66
}
67
68
/**
69
* Get ip
70
*
71
* @return string $ip
72
*/
73
public function getIp()
74
{
75
return $this->ip;
76
}
77
78
/**
79
* Set createdAt
80
*
81
* @param DateTime $createdAt
82
* @return self
83
*/
84
public function setCreatedAt(\DateTime $createdAt)
It seems like $createdAt of type object<DateTime> is incompatible with the declared type object<Eo\HoneypotBundle\Model\DateTime> of property $createdAt.
Our type inference engine has found an assignment to a property that is incompatible
with the declared type of that property.
Either this assignment is in error or the assigned type should be added
to the documentation/type hint for that property..
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..