Changeset 26

Show
Ignore:
Timestamp:
08/30/06 15:40:54 (2 years ago)
Author:
mikey
Message:

correct doc block

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/XJConf/converters/AbstractObjectValueConverter.php

    r22 r26  
    2727     * Add all attributes using the appropriate setter methods 
    2828     * 
    29      * @param   mixed  instance 
    30      * @param   Tag    $tag 
     29     * @param   Tag         $tag 
     30     * @param   Definition  $def 
     31     * @param   object      $instance 
    3132     * @throws  ValueConversionException 
    3233     */ 
    33     protected function addAttributesToValue(Tag $tag, TagDefinition $def, $instance) { 
     34    protected function addAttributesToValue(Tag $tag, TagDefinition $def, $instance) 
     35    { 
    3436        $class = new ReflectionClass(get_class($instance)); 
    3537        // set all attributes 
     
    5456     * Add all children to the created instance 
    5557     * 
    56      * @param   mixed  instance 
    57      * @param   Tag    $tag 
     58     * @param   Tag         $tag 
     59     * @param   Definition  $def 
     60     * @param   object      $instance 
    5861     * @throws  ValueConversionException 
    5962     */ 
    60     protected function addChildrenToValue(Tag $tag, Definition $def, $instance, $ignore = array()) { 
     63    protected function addChildrenToValue(Tag $tag, Definition $def, $instance, $ignore = array()) 
     64    { 
    6165        // traverse all children 
    6266        $children = $tag->getChildren();