コード例 #1
0
 function interpret(DvdInterpreterContext $ctx)
 {
     $actorsForTitle = $ctx->getActorsForTitle($this->title);
     return implode(', ', $actorsForTitle);
 }
コード例 #2
0
 function interpret(DvdInterpreterContext $ctx)
 {
     $titlesForActor = $ctx->getActorsForTitle($this->actor);
     return implode(', ', $titlesForActor);
 }