Changeset 1661

Show
Ignore:
Timestamp:
06/29/08 13:07:43 (2 months ago)
Author:
mikey
Message:

fix coding style issues

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/lang/stubArrayAccessor.php

    r1568 r1661  
    154154     * removes given offset 
    155155     * 
    156      * @param  string|int  $offset 
     156     * @param  string|int  $offset 
    157157     */ 
    158158    public function offsetUnset($offset) 
  • trunk/src/main/php/net/stubbles/rdbms/persistence/annotation/stubEntityAnnotation.php

    r1613 r1661  
    7474     * returns the default order by statement to be used when fetching more then one instance 
    7575     * 
    76      * @return unknown 
     76     * @return string 
    7777     */ 
    7878    public function getDefaultOrder() 
  • trunk/src/main/php/net/stubbles/streams/stubFileInputStream.php

    r1622 r1661  
    2828     * constructor 
    2929     * 
    30      * @param  string|resource  $file 
    31      * @param  string           $mode  option  opening mode if $file is a filename 
     30     * @param   string|resource  $file 
     31     * @param   string           $mode  option  opening mode if $file is a filename 
     32     * @throws  stubIllegalArgumentException 
    3233     */ 
    3334    public function __construct($file, $mode = 'rb') 
  • trunk/src/main/php/net/stubbles/streams/stubFileOutputStream.php

    r1605 r1661  
    2121     * constructor 
    2222     * 
    23      * @param  string|resource  $file 
    24      * @param  string           $mode  option  opening mode if $file is a filename 
     23     * @param   string|resource  $file 
     24     * @param   string           $mode  option  opening mode if $file is a filename 
     25     * @throws  stubIllegalArgumentException 
    2526     */ 
    2627    public function __construct($file, $mode = 'wb') 
  • trunk/src/main/php/net/stubbles/util/xjconf/stubConfigXJConfExtension.php

    r1624 r1661  
    9393            $resultTag->setValue($value); 
    9494            return $resultTag; 
    95         // add registry values 
    9695        } elseif ($tag->getName() === 'regConfig' && $tag->hasAttribute('method') === true &&  $tag->hasAttribute('name') === true) { 
     96            // add registry values 
    9797            $methodName = $tag->getAttribute('method'); 
    9898            $refClass = new ReflectionClass('stubConfig');