. */ /** * Doctrine_Query_Limit * * @package Doctrine * @subpackage Query * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.org * @since 1.0 * @version $Revision: 1352 $ * @author Konsta Vesterinen */ class Doctrine_Query_Limit extends Doctrine_Query_Part { public function parse($limit) { return (int) $limit; } }