Aslında bu sorular benim için bu Geo cevabı @ doğru olanıdır .... belirsiz.
Eğer (@ Anti-) olabilir diyor ne composition
Bu, benim için örnek:
<?php
class Greeting {
private $what;
private $who;
public function say($what) {
$this->what = $what;
return $this;
}
public function to($who) {
$this->who = $who;
return $this;
}
public function __toString() {
return sprintf("%s %s\n", $this->what, $this->who);
}
}
$greeting = new Greeting();
echo $greeting->say('hola')->to('gabriel'); // will print: hola gabriel
>