Decorator::operation PHP Method

operation() public method

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

Usage Example

Exemplo n.º 1
0
Arquivo: 0.php Projeto: ruyicoder/php
 public function operation()
 {
     parent::operation();
     $this->Addbehavior();
     var_dump('具体装饰对象B的操作');
 }
All Usage Examples Of Decorator::operation