operation() public method

public operation ( )
コード例 #1
0
 /**
  * Декоратор оборачивает операцию компонента в тег <strong>
  *
  * @return string
  */
 public function operation()
 {
     return "<strong>" . $this->component->operation() . "</strong>";
 }
コード例 #2
0
ファイル: Composite.php プロジェクト: henryf/designPatterns
 public function remove(Component $component)
 {
     return 'Remove Method ' . $component->operation();
 }
コード例 #3
0
ファイル: Client.php プロジェクト: henryf/designPatterns
 public function doSomething(Component $component)
 {
     return $component->operation();
 }