Show
Ignore:
Timestamp:
10/02/08 01:00:33 (3 months ago)
Author:
nowelium
Message:

fix:procedure & transaction scripts

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/misc/Hermit/src/Hermit/tx/HermitNeverTx.php

    r19344 r20417  
    55 */ 
    66class HermitNeverTx extends AbstractHermitTx { 
     7    public function proceed(HermitProxy $proxy, $name, array $parameters){ 
     8        if($this->hasTransaction()){ 
     9            throw new LogicException('Already associated with another transaction'); 
     10        } 
     11        return $proxy->request($name, $parameters); 
     12    } 
    713}