There is at least one abstract method in this class. Maybe declare it as abstract, or implement the remaining methods: hasProperty, p, properties, property
Loading history...
14
{
15
/**
16
* @var string
17
*/
18
public $email;
19
20
/**
21
* @var string
22
*/
23
public $url;
24
25
/**
26
* @param string $emailId The email (log) id.
27
* @return self
28
*/
29
public function setEmail(?string $emailId)
30
{
31
$this->email = $emailId;
32
return $this;
33
}
34
35
/**
36
* @return string|null
37
*/
38
public function email(): ?string
39
{
40
return $this->email;
41
}
42
43
/**
44
* @param string $url The original (and target) URL.