Decorator::operation PHP Method

operation() public method

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