Changeset 587

Show
Ignore:
Timestamp:
04/20/07 15:18:45 (2 years ago)
Author:
schst
Message:

Whitespace fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/stubClassLoader.php

    r581 r587  
    4040/** 
    4141 * Exception thrown if the class loader can not find the desired class. 
    42  *  
     42 * 
    4343 * This exception must reside here because the stubClassLoader uses it when a class can not be loaded. 
    44  *  
     44 * 
    4545 * @package  stubbles 
    4646 */ 
     
    8282    /** 
    8383     * returns a string representation of the class 
    84      *  
     84     * 
    8585     * The result is a short but informative representation about the class and 
    8686     * its values. Per default, this method returns: 
     
    179179                $uri = stubConfig::getSourcePath() . DIRECTORY_SEPARATOR . 'php' . DIRECTORY_SEPARATOR .  str_replace('.', DIRECTORY_SEPARATOR, $fqClassName) . '.php'; 
    180180            } 
    181              
     181 
    182182            if ((@include $uri) == false) { 
    183183                throw new stubClassNotFoundException($fqClassName);