浏览代码

[DependencyInjection] Remove OpenSky doc-block and AGPL license string

Jeremy Mikola 14 年之前
父节点
当前提交
a7bac83c58

+ 2 - 2
src/Symfony/Component/DependencyInjection/Exception/Exception.php

@@ -14,9 +14,9 @@ namespace Symfony\Component\DependencyInjection\Exception;
 /**
  * Exception
  *
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  * @author Bulat Shakirzyanov <bulat@theopenskyproject.com>
  */
 interface Exception
 {
-}
+}

+ 10 - 5
src/Symfony/Component/DependencyInjection/Exception/InvalidArgumentException.php

@@ -4,15 +4,20 @@ namespace Symfony\Component\DependencyInjection\Exception;
 
 use \InvalidArgumentException as BaseInvalidArgumentException;
 
+/*
+ * This file is part of the Symfony framework.
+ *
+ * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
+ *
+ * This source file is subject to the MIT license that is bundled
+ * with this source code in the file LICENSE.
+ */
+
 /**
  * InvalidArgumentException
  *
- * @package OpenSky Messaging
- * @version $Id$
  * @author Bulat Shakirzyanov <bulat@theopenskyproject.com>
- * @copyright (c) 2010 OpenSky Project Inc
- * @license http://www.gnu.org/licenses/agpl.txt GNU Affero General Public License
  */
 class InvalidArgumentException extends BaseInvalidArgumentException implements Exception
 {
-}
+}