operation() 공개 메소드

public operation ( )
예제 #1
0
파일: 0.php 프로젝트: ruyicoder/php
 public function operation()
 {
     parent::operation();
     $this->Addbehavior();
     var_dump('具体装饰对象B的操作');
 }
예제 #2
0
 public function operation()
 {
     return parent::operation() . ' - ' . $this->addedBehavior();
 }
예제 #3
0
 public function operation()
 {
     return parent::operation() . ' - ' . $this->addedState;
 }
 public function operation()
 {
     parent::operation();
     $this->addedOperationB();
 }