1234567891011121314151617181920212223242526272829 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfPluginConfigurationGeneric represents a configuration for a plugin with no configuration class.
- *
- * @package symfony
- * @subpackage config
- * @author Kris Wallsmith <kris.wallsmith@symfony-project.com>
- * @version SVN: $Id: sfPluginConfigurationGeneric.class.php 12503 2008-10-31 16:58:52Z Kris.Wallsmith $
- */
- class sfPluginConfigurationGeneric extends sfPluginConfiguration
- {
- /**
- * @see sfPluginConfiguration
- */
- public function initialize()
- {
- return false;
- }
- }
|