Show
Ignore:
Timestamp:
12/06/07 23:11:20 (8 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/service/annotations/stubWebMethodAnnotation.php

    r496 r1127  
    55 * @author      Stephan Schmidt <schst@stubbles.net> 
    66 * @package     stubbles 
    7  * @subpackage  service 
     7 * @subpackage  service_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 to mark a method as a service method 
     
    1616 * 
    1717 * @package     stubbles 
    18  * @subpackage  service 
     18 * @subpackage  service_annotations 
    1919 */ 
    20 class stubWebMethodAnnotation extends stubAbstractAnnotation implements stubAnnotation { 
    21  
     20class stubWebMethodAnnotation extends stubAbstractAnnotation implements stubAnnotation 
     21
    2222    /** 
    2323     * Returns the target of the annotation as bitmap. 
     
    2525     * @return  int 
    2626     */ 
    27     public function getAnnotationTarget() { 
     27    public function getAnnotationTarget() 
     28    { 
    2829        return stubAnnotation::TARGET_METHOD; 
    2930    }