Development

Changeset 11223

You must first sign up to be able to contribute.

Changeset 11223

Show
Ignore:
Timestamp:
08/28/08 13:58:05 (3 months ago)
Author:
francois
Message:

cleaning up

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/DbFinderPlugin/lib/doctrine/sfDoctrineFinder.php

    r11222 r11223  
    332332  } 
    333333   
    334   public function updateLatestQuery() 
    335   { 
    336      throw new Exception('This method is not yet implemented'); 
    337   } 
    338    
    339334  public function addWithClass($class) 
    340335  { 
     
    671666     
    672667    return $this; 
    673   } 
    674    
    675   /** 
    676    * Finalizes the query, executes it and hydrates results 
    677    *  
    678    * @return array List of Doctrine_Record objects 
    679    */ 
    680   public function doFind() 
    681   { 
    682     throw new Exception('This method is not yet implemented'); 
    683668  } 
    684669   
     
    12951280  } 
    12961281   
    1297   /** 
    1298    * Behavior-like supplementary getter for supplementary columns added by way of withColumn() 
    1299    * 
    1300    * @param Doctrine_Record $object Doctrine model object 
    1301    * @param string $alias Supplementary column name 
    1302    * 
    1303    * @return mixed The value of the column set by setColumn() 
    1304    */ 
    1305   public function getColumn($object, $alias) 
    1306   { 
    1307     throw new Exception('This method is not yet implemented'); 
    1308   } 
    1309    
    1310   /** 
    1311    * Behavior-like supplementary setter for supplementary columns added by way of withColumn() 
    1312    * 
    1313    * @param Doctrine_Record $object Doctrine model object 
    1314    * @param string $alias Supplementary column name 
    1315    * @param mixed The value of the column 
    1316    */ 
    1317   public function setColumn($object, $alias, $value) 
    1318   { 
    1319     throw new Exception('This method is not yet implemented'); 
    1320   } 
    1321    
    13221282  protected function getClassAndAlias($class) 
    13231283  {