Bläddra i källkod

Added missing license header in the DependenciInjection\Configuration classes

Christophe Coevoet 14 år sedan
förälder
incheckning
ef045a9433
19 ändrade filer med 171 tillägg och 0 borttagningar
  1. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/ArrayNode.php
  2. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/BaseNode.php
  3. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/BooleanNode.php
  4. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Builder/ExprBuilder.php
  5. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Builder/MergeBuilder.php
  6. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Builder/NodeBuilder.php
  7. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Builder/NormalizationBuilder.php
  8. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Builder/TreeBuilder.php
  9. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Builder/ValidationBuilder.php
  10. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Exception/DuplicateKeyException.php
  11. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Exception/Exception.php
  12. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Exception/ForbiddenOverwriteException.php
  13. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Exception/InvalidConfigurationException.php
  14. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Exception/InvalidTypeException.php
  15. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Exception/UnsetKeyException.php
  16. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/NodeInterface.php
  17. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/Processor.php
  18. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/PrototypeNodeInterface.php
  19. 9 0
      src/Symfony/Component/DependencyInjection/Configuration/ScalarNode.php

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/ArrayNode.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration;
 
 use Symfony\Component\DependencyInjection\Configuration\Exception\InvalidConfigurationException;

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/BaseNode.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration;
 
 use Symfony\Component\DependencyInjection\Configuration\Exception\Exception;

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/BooleanNode.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration;
 
 use Symfony\Component\DependencyInjection\Configuration\Exception\InvalidTypeException;

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Builder/ExprBuilder.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Builder;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Builder/MergeBuilder.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Builder;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Builder/NodeBuilder.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Builder;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Builder/NormalizationBuilder.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Builder;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Builder/TreeBuilder.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Builder;
 
 use Symfony\Component\DependencyInjection\Configuration\BaseNode;

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Builder/ValidationBuilder.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Builder;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Exception/DuplicateKeyException.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Exception;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Exception/Exception.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Exception;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Exception/ForbiddenOverwriteException.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Exception;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Exception/InvalidConfigurationException.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Exception;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Exception/InvalidTypeException.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Exception;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Exception/UnsetKeyException.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration\Exception;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/NodeInterface.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/Processor.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration;
 
 use Symfony\Component\DependencyInjection\Extension\Extension;

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/PrototypeNodeInterface.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration;
 
 /**

+ 9 - 0
src/Symfony/Component/DependencyInjection/Configuration/ScalarNode.php

@@ -1,5 +1,14 @@
 <?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.
+ */
+
 namespace Symfony\Component\DependencyInjection\Configuration;
 
 use Symfony\Component\DependencyInjection\Configuration\Exception\InvalidConfigurationException;