<?php
class Sample
{
private $name;
// Name is required!
public function __construct($name) {
$this->setName($name);
}
public function setName($name) {
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}
class ModuleSample
{
/**
* @var Sample
*/
private $originalSample;
public function __construct(Sample $originalSample)
{
$this->originalSample = $originalSample;
}
public function __call($methodName, $arguments)
{
return $this->originalSample->$methodName(...$arguments);
}
}
$sample = new Sample("John");
$moduleSample = new ModuleSample($sample);
$moduleSample->setName("Andrew");
echo $moduleSample->getName(); // Should print "Andrew"
Parse error: syntax error, unexpected '.', expecting ')' in /in/pfWTh on line 36
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected '.', expecting ')' in /in/pfWTh on line 36
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/pfWTh on line 5
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/pfWTh on line 5
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/pfWTh on line 5
Process exited with code 255.