Development

Changeset 32663 for plugins/sfPinbaPlugin

You must first sign up to be able to contribute.

Show
Ignore:
Timestamp:
06/21/11 20:19:48 (2 years ago)
Author:
lombardot
Message:

[sfPinbaPlugin] Fix code formatting

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfPinbaPlugin/trunk/lib/filter/sfPinbaStartFilter.class.php

    r32021 r32663  
    33 * Symfony Filter Class sfPinbaStopFilter 
    44 * This class will START the pinba timer for the request 
     5 * @author cedric LOMBARDOT 
    56 */ 
    67class sfPinbaStartFilter extends sfFilter 
     
    1213  public function execute($filterChain) 
    1314  { 
    14      
    1515  // Filters don't have direct access to the request and user objects. 
    1616  // You will need to use the context object to get them 
     
    2020  //start pinba 
    2121  sfPinbaContext::getInstance()->startTimerForRequest(); 
    22    
    23    
     22 
    2423    // Execute next filter 
    25     $filterChain->execute();   
     24    $filterChain->execute(); 
    2625  } 
    2726}