Example #1
0
 public function service()
 {
     $obj = new Earth();
     $obj->getName();
     $obj->attract(new Moon());
     $withVar = new Astroid($name);
     $withParam = new Planet('Earth');
     $complexParam = new Comet($param['period']);
 }
Example #2
0
 public function orbiting(Earth $m)
 {
     return "Circling around the " . $m->getName();
 }