Decorator::operation PHP 메소드

operation() 공개 메소드

public operation ( )
    public function operation()
    {
        $this->_component->operation();
    }

Usage Example

예제 #1
0
파일: 0.php 프로젝트: ruyicoder/php
 public function operation()
 {
     parent::operation();
     $this->Addbehavior();
     var_dump('具体装饰对象B的操作');
 }
All Usage Examples Of Decorator::operation