The property component does not seem to exist. Did you mean referenceComponent?
An attempt at access to an undefined property has been detected. This may either be a typographical error
or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods
to allow access. See the php core documentation on Overloading.
Loading history...
23
return $this;
24
}
25
26
public function setReferenceComponent($referenceComponent)
27
{
28
$this->referenceComponent = $referenceComponent;
29
}
30
31
public function run()
32
{
33
34
}
35
36
public function profileToProfile()
37
{
38
// Get Points from Profile Fa
39
40
}
41
42
public function postToProfile(Post $post, Profile $profile)
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.