Show
Ignore:
Timestamp:
12/06/07 23:11:20 (9 months ago)
Author:
mikey
Message:

fixed a bunch of coding style issues detected with new coding style check mechanism

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLIgnoreAnnotation.php

    r432 r1127  
    55 * @author      Stephan Schmidt <schst@stubbles.net> 
    66 * @package     stubbles 
    7  * @subpackage  xml_serializer 
     7 * @subpackage  xml_serializer_annotations 
    88 */ 
    99stubClassLoader::load('net.stubbles.reflection.annotations.stubAnnotation', 
    10                       'net.stubbles.reflection.annotations.stubAbstractAnnotation'); 
    11  
     10                      'net.stubbles.reflection.annotations.stubAbstractAnnotation' 
     11); 
    1212/** 
    1313 * Annotation for XMLSerializer 
     
    1616 * 
    1717 * @package     stubbles 
    18  * @subpackage  xml_serializer 
     18 * @subpackage  xml_serializer_annotations 
    1919 */ 
    20 class stubXMLIgnoreAnnotation extends stubAbstractAnnotation implements stubAnnotation { 
     20class stubXMLIgnoreAnnotation extends stubAbstractAnnotation implements stubAnnotation 
     21
    2122 
    2223    /** 
     
    2526     * @return  int 
    2627     */ 
    27     public function getAnnotationTarget() { 
     28    public function getAnnotationTarget() 
     29    { 
    2830        return stubAnnotation::TARGET_ALL; 
    2931    }