. */ /** * Doctrine_Query_Filter * * @package Doctrine * @subpackage Query * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.org * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ class Doctrine_Query_Filter implements Doctrine_Query_Filter_Interface { /** * preQuery * * Method for listening the preQuery method of Doctrine_Query and * hooking into the query building procedure, doing any custom / specialized * query building procedures that are neccessary. * * @return void */ public function preQuery(Doctrine_Query $query) { } /** * postQuery * * Method for listening the postQuery method of Doctrine_Query and * to hook into the query building procedure, doing any custom / specialized * post query procedures (for example logging) that are neccessary. * * @param Doctrine_Query $query * @return void */ public function postQuery(Doctrine_Query $query) { } }