Changeset 819

Show
Ignore:
Timestamp:
08/14/07 17:53:39 (1 year ago)
Author:
mikey
Message:

tabs vs. whitespace

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/ioc/injection/stubBinding.php

    r810 r819  
    124124 
    125125        foreach ($this->impl->getMethods() as $method) { 
    126            if (strncmp($method->getName(), '__', 2) === 0) { 
    127                continue; 
    128            
    129            if (!$method->isPublic()) { 
    130                continue; 
    131            
    132            if (!$method->hasAnnotation('Inject')) { 
    133                continue; 
    134            
    135            $paramValues = array(); 
     126            if (strncmp($method->getName(), '__', 2) === 0) { 
     127                continue; 
     128           
     129            if (!$method->isPublic()) { 
     130                continue; 
     131           
     132            if (!$method->hasAnnotation('Inject')) { 
     133                continue; 
     134           
     135            $paramValues = array(); 
    136136            foreach ($method->getParameters() as $param) { 
    137137                $class = $param->getClass(); 
  • trunk/src/main/php/net/stubbles/ioc/injection/stubInjector.php

    r810 r819  
    4242                $scope = $binding->getScope(); 
    4343                if ($scope != null) { 
    44                    return $scope->getInstance($key, $binding); 
     44                    return $scope->getInstance($key, $binding); 
    4545                } else { 
    4646                    return $binding->getInstance();