X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fpsy%2Fpsysh%2Ftest%2FPsy%2FTest%2FFormatter%2FSignatureFormatterTest.php;fp=vendor%2Fpsy%2Fpsysh%2Ftest%2FPsy%2FTest%2FFormatter%2FSignatureFormatterTest.php;h=73511fb1f57de9bb4bb1a46deae82499b6374d76;hp=0ceb5b477da9a1220baefff7b6510f8e58b1df47;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/psy/psysh/test/Psy/Test/Formatter/SignatureFormatterTest.php b/vendor/psy/psysh/test/Psy/Test/Formatter/SignatureFormatterTest.php index 0ceb5b477..73511fb1f 100644 --- a/vendor/psy/psysh/test/Psy/Test/Formatter/SignatureFormatterTest.php +++ b/vendor/psy/psysh/test/Psy/Test/Formatter/SignatureFormatterTest.php @@ -14,7 +14,7 @@ namespace Psy\Test\Formatter; use Psy\Formatter\SignatureFormatter; use Psy\Reflection\ReflectionConstant; -class SignatureFormatterTest extends \PHPUnit_Framework_TestCase +class SignatureFormatterTest extends \PHPUnit\Framework\TestCase { const FOO = 'foo value'; private static $bar = 'bar value'; @@ -34,13 +34,6 @@ class SignatureFormatterTest extends \PHPUnit_Framework_TestCase public function signatureReflectors() { return array( - array( - new \ReflectionClass($this), - "class Psy\Test\Formatter\SignatureFormatterTest " - . 'extends PHPUnit_Framework_TestCase implements ' - . 'Countable, PHPUnit_Framework_SelfDescribing, ' - . 'PHPUnit_Framework_Test', - ), array( new \ReflectionFunction('implode'), defined('HHVM_VERSION') ? 'function implode($arg1, $arg2 = null)' : 'function implode($glue, $pieces)',