コード例 #1
0
ファイル: ForFactory.php プロジェクト: trismegiste/mondrian
 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']);
 }
コード例 #2
0
ファイル: Moon.php プロジェクト: trismegiste/mondrian
 public function orbiting(Earth $m)
 {
     return "Circling around the " . $m->getName();
 }