operation() public method

public operation ( )
示例#1
0
 /**
  * Декоратор оборачивает операцию компонента в тег <strong>
  *
  * @return string
  */
 public function operation()
 {
     return "<strong>" . $this->component->operation() . "</strong>";
 }
示例#2
0
 public function remove(Component $component)
 {
     return 'Remove Method ' . $component->operation();
 }
示例#3
0
 public function doSomething(Component $component)
 {
     return $component->operation();
 }