Show
Ignore:
Timestamp:
03/20/08 11:36:27 (9 months ago)
Author:
hans
Message:

Minor style / phpdoc cleanup in adapter classes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.3/runtime/classes/propel/adapter/DBAdapter.php

    r989 r1011  
    286286         * @deprecated 
    287287         */ 
    288         public function useQuoteIdentifier() { 
     288        public function useQuoteIdentifier() 
     289        { 
    289290                return false; 
    290291        } 
     
    294295         */ 
    295296        public abstract function applyLimit(&$sql, $offset, $limit); 
    296  
    297         public abstract function random($seed=NULL); 
     297         
     298        /** 
     299         * Gets the SQL string that this adapter uses for getting a random number. 
     300         * 
     301         * @param      mixed $seed (optional) seed value for databases that support this 
     302         */ 
     303        public abstract function random($seed = null); 
    298304 
    299305} 
  • branches/1.3/runtime/classes/propel/adapter/DBPostgres.php

    r563 r1011  
    142142                } 
    143143        } 
    144  
     144         
     145        /** 
     146         * @see        DBAdapter::random() 
     147         */ 
    145148        public function random($seed=NULL) 
    146149        {