12345678910111213141516171819202122232425 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- * (c) Jonathan H. Wage <jonwage@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfObjectRouteCollection represents a collection of routes bound to Doctrine objects.
- *
- * @package symfony
- * @subpackage doctrine
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @author Jonathan H. Wage <jonwage@gmail.com>
- * @version SVN: $Id: sfDoctrineRouteCollection.class.php 11475 2008-09-12 11:07:23Z fabien $
- */
- class sfDoctrineRouteCollection extends sfObjectRouteCollection
- {
- protected
- $routeClass = 'sfDoctrineRoute';
- }
|