Changeset 715

Show
Ignore:
Timestamp:
06/05/07 22:48:36 (1 year ago)
Author:
schst
Message:

Fixed type,
whitespace fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/ipo/interceptors/stubInterceptorXJConfInitializer.php

    r584 r715  
    22/** 
    33 * Class for initializing the interceptors via XJConf. 
    4  *  
     4 * 
    55 * @author      Frank Kleine <mikey@stubbles.net> 
    66 * @package     stubbles 
     
    4242 
    4343    /** 
    44      * returns the data to cache  
     44     * returns the data to cache 
    4545     * 
    4646     * @return  array 
     
    5656            } 
    5757        } 
    58          
     58 
    5959        foreach ($this->postInterceptors as $postInterceptor) { 
    6060            if ($postInterceptor instanceof stubSerializable) { 
     
    6464            } 
    6565        } 
    66          
     66 
    6767        return $cacheData; 
    6868    } 
     
    8686                    stubClassLoader::load($preInterceptor); 
    8787                } 
    88                  
     88 
    8989                $this->preInterceptors[] = new $nqClassName(); 
    9090            } 
    9191        } 
    92          
     92 
    9393        foreach ($cacheData['postInterceptors'] as $postInterceptor) { 
    9494            if ($postInterceptor instanceof stubSerializedObject) { 
     
    102102                    stubClassLoader::load($postInterceptor); 
    103103                } 
    104                  
     104 
    105105                $this->postInterceptors[] = new $nqClassName(); 
    106106            } 
     
    119119 
    120120    /** 
    121      * will be called in case the stubXJConfProxy did not found the data in the 
     121     * will be called in case the stubXJConfProxy did not find the data in the 
    122122     * cache and the initializer has to load values from the facade 
    123123     *