Changeset 434

Show
Ignore:
Timestamp:
03/29/07 00:11:20 (2 years ago)
Author:
schst
Message:

Indentation and whitespace fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationParserAnnotationTypeState.php

    r433 r434  
    4646            $this->parser->setAnnotationType($this->type); 
    4747            $this->parser->changeState(stubAnnotationParser::STATE_ANNOTATION); 
    48         return; 
     48            return; 
    4949        } 
    50          
     50 
    5151        if (strlen($this->type) == 0 && preg_match('/^[a-zA-Z_]$/', $token) === false) { 
    5252            throw new ReflectionException('Annotation type has to start with a letter or underscore, but starts with ' . $token); 
     
    5454            throw new ReflectionException('Annotation type may contain letters, underscores, numbers and dots, but contains ' . $token); 
    5555        } 
    56          
     56 
    5757        $this->type .= $token; 
    5858    }