The variable $this does not exist. Did you forget to declare it?
This check marks access to variables or properties that have not been declared yet. While PHP
has no explicit notion of declaring a variable, accessing it before a value is assigned
to it is most likely a bug.
Loading history...
49
}
50
51
return $bounce;
52
}
53
54
/**
55
* @return string
56
*/
57
public function getAddress()
58
{
59
return $this->address;
60
}
61
62
/**
63
* @return \DateTime
64
*/
65
public function getCreatedAt()
66
{
67
return $this->createdAt;
68
}
69
70
/**
71
* @param \DateTime $createdAt
72
*/
73
private function setCreatedAt(\DateTime $createdAt)
This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.