feature #16423 [VarDumper] Deprecate VarDumperTestCase in favor of the trait (nicolas-grekas)

This PR was merged into the 2.8 branch.

Discussion
----------

[VarDumper] Deprecate VarDumperTestCase in favor of the trait

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

Because people must upgrade to PHP 5.5 before upgrading to Sf 3.0, this can be done on the 2.8 branch.

Commits
-------

31e51ba [VarDumper] Deprecate VarDumperTestCase in favor of the trait
This commit is contained in:
Fabien Potencier 2015-11-04 01:37:54 +01:00
commit ed4e3e87ac

View File

@ -16,6 +16,8 @@ use Symfony\Component\VarDumper\Dumper\CliDumper;
/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @deprecated since version 2.8, to be removed in 3.0. Use the VarDumperTestTrait instead.
*/
abstract class VarDumperTestCase extends \PHPUnit_Framework_TestCase
{