This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Config
Fabien Potencier 30bd397366 minor #16414 removed all @covers annotations (fabpot)
This PR was merged into the 2.3 branch.

Discussion
----------

removed all @covers annotations

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

Some unit tests have a `@covers` PHPUnit annotations. Most of them were added a very long time ago, but since then, we did not use them anymore and the existing ones are not maintained (see #16413). So, I propose to remove them all.

Commits
-------

1e0af36 removed all @covers annotations
2015-11-02 19:22:02 +01:00
..
Definition [Config] type specific check for emptiness 2015-07-15 19:51:32 +02:00
Exception [DX] improve file loader error for router/other resources in bundle 2015-04-17 01:24:38 -05:00
Loader minor #14121 CS: Pre incrementation/decrementation should be used if possible (gharlan) 2015-05-15 15:28:34 +02:00
Resource Fix that two DirectoryResources with different patterns would be deduplicated 2015-09-10 14:18:59 +02:00
Tests minor #16414 removed all @covers annotations (fabpot) 2015-11-02 19:22:02 +01:00
Util Add parsing of hexadecimal strings for PHP 7 2015-03-30 09:42:01 +02:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [DIC] Better handling of enableable configurations 2013-01-28 18:21:49 +01:00
composer.json added the new Composer exclude-from-classmap option 2015-10-30 12:48:51 -07:00
ConfigCache.php Docblock fixes 2014-11-30 13:33:44 +00:00
FileLocator.php Remove duplicated paths 2015-06-12 16:45:17 -03:00
FileLocatorInterface.php [Config] fix filelocator with empty name 2014-10-13 20:50:59 +02:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
phpunit.xml.dist [ci] SymfonyTestsListener is now auto-registered 2015-10-11 11:37:49 +02:00
README.md renamed composer.phar to composer to be consistent with the Symfony docs 2015-02-08 08:41:14 +01:00

Config Component

Config provides the infrastructure for loading configurations from different data sources and optionally monitoring these data sources for changes. There are additional tools for validating, normalizing and handling of defaults that can optionally be used to convert from different formats to arrays.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Config/
$ composer install
$ phpunit