コード例 #1
0
ファイル: Tree.php プロジェクト: alex-k/jsondiff
 public function exportWith(ExportInterface $exporter)
 {
     return $exporter->exportFromArray($this->toArray());
 }
コード例 #2
0
ファイル: File.php プロジェクト: Vincebml/PHPatterns
 /**
  * @param ExportInterface $exportStrategy
  * @return string
  */
 public function exportTo(ExportInterface $exportStrategy)
 {
     return $exportStrategy->export($this->path);
 }