Changeset 1296

Show
Ignore:
Timestamp:
01/24/08 15:42:33 (9 months ago)
Author:
richi
Message:

fixed coding standard issues (var docblock)

Files:

Legend:

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

    r1222 r1296  
    4040     * Injector used by this binder 
    4141     * 
    42      * @var stubInjector 
     42     * @var stubInjector 
    4343     */ 
    4444    protected $injector = null; 
  • trunk/src/main/php/net/stubbles/ioc/stubBindingScopeSingleton.php

    r1222 r1296  
    2121     * Instances in this scope 
    2222     * 
    23      * @var array<string,objct> 
     23     * @var array<string,object> 
    2424     */ 
    2525    protected $instances = array(); 
  • trunk/src/main/php/net/stubbles/ioc/stubBindingScopes.php

    r1222 r1296  
    1919     * Scope for singleton objects 
    2020     * 
    21      * @var string 
     21     * @var string 
    2222     */ 
    2323    public static $SINGLETON = null; 
  • trunk/src/main/php/net/stubbles/ioc/stubClassBinding.php

    r1222 r1296  
    2222     * The injector used by this binding 
    2323     * 
    24      * @var stubInjector 
     24     * @var stubInjector 
    2525     */ 
    2626    protected $injector = null; 
     
    2828     * The type for this binding 
    2929     * 
    30      * @var string 
     30     * @var string 
    3131     */ 
    3232    protected $type     = null; 
     
    3434     * The class that implements this binding 
    3535     * 
    36      * @var stubReflectionClass 
     36     * @var stubReflectionClass 
    3737     */ 
    3838    protected $impl     = null; 
     
    4040     * Annotated with a name 
    4141     * 
    42      * @var string 
     42     * @var string 
    4343     */ 
    4444    protected $name     = null; 
     
    4646     * Scope of the binding 
    4747     * 
    48      * @var stubBindingScope 
     48     * @var stubBindingScope 
    4949     */ 
    5050    protected $scope    = null; 
     
    5252     * Instance this type is bound to 
    5353     * 
    54      * @var object 
     54     * @var object 
    5555     */ 
    5656    protected $instance = null; 
     
    5858     * The provider to use for this binding 
    5959     * 
    60      * @var stubInjectionProvider 
     60     * @var stubInjectionProvider 
    6161     */ 
    6262    protected $provider = null; 
  • trunk/src/main/php/net/stubbles/ioc/stubInjector.php

    r1222 r1296  
    2424     * bindings used by the injector that are not yet in the index 
    2525     * 
    26      * @var array<stubBinding> 
     26     * @var array<stubBinding> 
    2727     */ 
    2828    protected $bindings   = array(); 
  • trunk/src/main/php/net/stubbles/ipo/request/filters/stubAbstractFilterDecorator.php

    r1293 r1296  
    2121     * decorated filter 
    2222     * 
    23      * @var stubFilter 
     23     * @var stubFilter 
    2424     */ 
    2525    protected $decoratedFilter; 
  • trunk/src/main/php/net/stubbles/ipo/request/filters/stubRegexFilterDecorator.php

    r1274 r1296  
    2323    /** 
    2424     * indicates the decorator behavior: 
     25     *  
    2526     * decorate the filter (apply regex) *before* the 
    2627     * actual method call. 
    27      * 
    28      * @var int 
    2928     */ 
    3029    const STRATEGY_BEFORE = -1; 
    3130    /** 
    3231     * indicates the decorator behavior: 
     32     *  
    3333     * decorate the filter (apply regex) *after* the 
    3434     * actual method call. 
    35      * 
    36      * @var int 
    3735     */ 
    3836    const STRATEGY_AFTER  = 1; 
    3937    /** 
    4038     * Decorator Strategy: 
     39     *  
    4140     * <ul> 
    4241     *   <li>self::BEFORE_STRAGTEGY</li> 
     
    4443     * </ul> 
    4544     * 
    46      * @var int 
     45     * @var int 
    4746     */ 
    4847    protected $strategy; 
     48     
    4949    /** 
    5050     * regex 
    5151     * 
    52      * @var string 
     52     * @var string 
    5353     */ 
    5454    protected $regex; 
  • trunk/src/main/php/net/stubbles/ipo/session/resourcemanager/stubSessionResourceManager.php

    r1234 r1296  
    2727     * all available interfaces and the matching implementations 
    2828     * 
    29      * @var array<string,string> 
     29     * @var array<string,string> 
    3030     */ 
    3131    protected $resourceDefinitions = array(); 
     
    3333     * all resources 
    3434     * 
    35      * @var array<string,object> 
     35     * @var array<string,object> 
    3636     */ 
    3737    protected $resources           = array(); 
     
    3939     * session of the request 
    4040     * 
    41      * @var stubSession 
     41     * @var stubSession 
    4242     */ 
    4343    protected $session; 
  • trunk/src/main/php/net/stubbles/ipo/session/resourcemanager/stubSessionResourceManagerPreInterceptor.php

    r1294 r1296  
    2727     * all configured resources as read from session-resources.xml 
    2828     * 
    29      * @var array<string,array<string>> 
     29     * @var array<string,array<string>> 
    3030     */ 
    3131    protected $resourceConfig = array(); 
  • trunk/src/main/php/net/stubbles/rdbms/stubDatabaseConnectionData.php

    r1281 r1296  
    3232    protected $fqClassName   = 'net::stubbles::rdbms::pdo::stubDatabasePDOConnection'; 
    3333    /** 
    34      * Data Source Name, or DSN, contains the information required to 
    35      * connect to the database 
     34     * Data Source Name, or DSN, contains the information required to connect to the database 
    3635     * 
    3736     * @var  string 
  • trunk/src/main/php/net/stubbles/reflection/annotations/stubAbstractAnnotation.php

    r1227 r1296  
    1919     * The name of the annotation 
    2020     * 
    21      * @var string 
     21     * @var string 
    2222     */ 
    2323    protected $annotationName; 
  • trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotationCache.php

    r1114 r1296  
    2020     * Property to store annotations 
    2121     * 
    22      * @var array<string,array> 
     22     * @var array<string,array> 
    2323     */ 
    2424    private static $annotations = array(stubAnnotation::TARGET_CLASS    => array(), 
  • trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotationFactory.php

    r1227 r1296  
    2323     * Prefixes that can be prepended to class names 
    2424     * 
    25      * @var array 
     25     * @var array 
    2626     */ 
    2727    private static $prefixes    = array('stub'); 
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionProperty.php

    r1227 r1296  
    2323     * Name of the class 
    2424     * 
    25      * @var string 
     25     * @var string 
    2626     */ 
    2727    protected $className; 
     
    3535     * Name of the property 
    3636     * 
    37      * @var string 
     37     * @var string 
    3838     */ 
    3939    protected $propertyName; 
  • trunk/src/main/php/net/stubbles/util/validators/stubExtFilterValidator.php

    r1230 r1296  
    2020     * The filter to use 
    2121     * 
    22      * @var int 
     22     * @var int 
    2323     */ 
    2424    protected $filter; 
     
    2727     * The options to use 
    2828     * 
    29      * @var array 
     29     * @var array 
    3030     */ 
    3131    protected $options = array(); 
     
    3434     * The flags to use 
    3535     * 
    36      * @var int 
     36     * @var int 
    3737     */ 
    3838    protected $flags = FILTER_FLAG_NONE; 
  • trunk/src/main/php/net/stubbles/websites/stubPage.php

    r1293 r1296  
    2525     * Resources that are used by this page 
    2626     * 
    27      * @var array<string,string> 
     27     * @var array<string,string> 
    2828     */ 
    2929    protected $resources  = array(); 
  • trunk/src/main/php/net/stubbles/websites/variantmanager/types/stubAbstractVariant.php

    r1265 r1296  
    4646    protected $name     = ''; 
    4747    /** 
    48      * Title of the variant, only used when exporting the 
    49      * variant configuration 
     48     * Title of the variant, only used when exporting the variant configuration 
    5049     *  
    5150     * @var  string 
     
    5352    protected $title    = ''; 
    5453    /** 
    55      * alias of the variant, only used when exporting the 
    56      * variant configuration 
     54     * alias of the variant, only used when exporting the variant configuration 
    5755     *  
    5856     * @var  string 
  • trunk/src/main/php/net/stubbles/websites/xml/stubXMLPageElementCachingDecorator.php

    r1231 r1296  
    2020     * Lifetime of the cache 
    2121     * 
    22      * @var int 
     22     * @var int 
    2323     */ 
    2424    private $lifetime = 3600; 
     
    2727     * Set the lifetime of the cache 
    2828     * 
    29      * @param int 
     29     * @param int 
    3030     */ 
    3131    public function setLifetime($lifetime) 
  • trunk/src/main/php/net/stubbles/websites/xml/stubXMLPageElementDecorator.php

    r1293 r1296  
    1919     * The decorated element 
    2020     * 
    21      * @var stubXMLPageElement 
     21     * @var stubXMLPageElement 
    2222     */ 
    2323    protected $element; 
  • trunk/src/main/php/net/stubbles/xml/rss/stubRSSFeedGenerator.php

    r1281 r1296  
    9898    protected $lastBuildDate  = null; 
    9999    /** 
     100     * URL points to RSS file format documentation 
     101     * 
    100102     * A URL that points to the documentation for the format used in the RSS 
    101103     * file. It's probably a pointer to this page. It's for people who might 
     
    107109    protected $docs           = 'http://rssboard.org/rss-specification'; 
    108110    /** 
    109      * number of minutes that indicates how long a channel can be cached 
    110      * before refreshing from the source 
     111     * number of minutes that indicates how long a channel can be cached before refreshing from the source 
    111112     * 
    112113     * @var  int 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLAttributeAnnotation.php

    r1229 r1296  
    2626     * Name of the XML attribute 
    2727     * 
    28      * @var string 
     28     * @var string 
    2929     */ 
    3030    protected $attributeName; 
     
    3232     * Whether an empty value should be skipped 
    3333     * 
    34      * @var boolean 
     34     * @var boolean 
    3535     */ 
    3636    protected $skipEmpty = true; 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLFragmentAnnotation.php

    r1229 r1296  
    2626     * Name of the XML tag 
    2727     * 
    28      * @var string 
     28     * @var string 
    2929     */ 
    3030    protected $tagName; 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php

    r1276 r1296  
    2929     * Pattern of the properties, that should be serialized 
    3030     * 
    31      * @var string 
     31     * @var string 
    3232     */ 
    3333    protected $pattern; 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLStrategyAnnotation.php

    r1229 r1296  
    2323     * The strategy to use for this class 
    2424     * 
    25      * @var int 
     25     * @var int 
    2626     */ 
    2727    protected $value; 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLTagAnnotation.php

    r1229 r1296  
    2727     * Name of the XML tag 
    2828     * 
    29      * @var string 
     29     * @var string 
    3030     */ 
    3131    protected $tagName; 
     
    3333     * Name of the XML tag for elements if this element is indexed 
    3434     * 
    35      * @var string 
     35     * @var string 
    3636     */ 
    3737    protected $elementTagName = null; 
  • trunk/src/main/php/net/stubbles/xml/serializer/stubXMLSerializer.php

    r1265 r1296  
    5656     * Default options 
    5757     * 
    58      * @var array 
     58     * @var array 
    5959     */ 
    6060    private $defaultOpts = array(self::OPT_ROOT_TAG => null, 
     
    6565     * Currently used options 
    6666     * 
    67      * @var array 
     67     * @var array 
    6868     */ 
    6969    private $opts; 
  • trunk/src/main/php/net/stubbles/xml/stubAbstractXMLStreamWriter.php

    r1127 r1296  
    3131     * List of supported features 
    3232     * 
    33      * @var array 
     33     * @var array 
    3434     */ 
    3535    protected $features = array(); 
  • trunk/src/main/php/net/stubbles/xml/stubDomXMLStreamWriter.php

    r1265 r1296  
    2222     * List of supported features 
    2323     * 
    24      * @var array 
     24     * @var array 
    2525     */ 
    2626    protected $features = array(stubXMLStreamWriter::FEATURE_AS_DOM, 
     
    3030     * DOM Document 
    3131     * 
    32      * @var DOMDocument 
     32     * @var DOMDocument 
    3333     */ 
    3434    protected $doc; 
     
    3636     * Stores al opened elements 
    3737     * 
    38      * @var array 
     38     * @var array 
    3939     */ 
    4040    protected $elementStack = array(); 
  • trunk/src/main/php/net/stubbles/xml/stubLibXmlXMLStreamWriter.php

    r1271 r1296  
    2222     * List of supported features 
    2323     * 
    24      * @var array 
     24     * @var array 
    2525     */ 
    2626    protected $features = array(stubXMLStreamWriter::FEATURE_AS_DOM); 
     
    2828     * Writer 
    2929     * 
    30      * @var XMLWriter 
     30     * @var XMLWriter 
    3131     */ 
    3232    protected $writer; 
  • trunk/src/main/php/net/stubbles/xml/xsl/util/stubXSLImageDimensions.php

    r1281 r1296  
    1919{ 
    2020    /** 
    21      * a list of file types where the key corresponds to the IMAGETYPE 
    22      * constants of PHP 
     21     * a list of file types where the key corresponds to the IMAGETYPE constants of PHP 
    2322     *  
    2423     * @var  array<int,string>