Remove SPYC library for Yamls and use Symfony/Component/Yaml instead.

This commit is contained in:
Andrés Montañez
2013-12-19 16:27:53 -02:00
parent 72a1a19518
commit d6e7e5b6ab
16 changed files with 1769 additions and 1050 deletions
@@ -0,0 +1,23 @@
<?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\Yaml\Exception;
/**
* Exception class thrown when an error occurs during parsing.
*
* @author Romain Neutron <imprec@gmail.com>
*
* @api
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
}