/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Config/Definition/Exception/DuplicateKeyException.php
22 строки
581 B
Fabien Potencier
replaced symfony-project.org by symfony.com
06 мар 2011, 14:40
06 мар 2011, 14:40
8c423ed
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config\Definition\Exception; /** * This exception is thrown whenever the key of an array is not unique. This can * only be the case if the configuration is coming from an XML file. * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ class DuplicateKeyException extends InvalidConfigurationException { }