Remove paragonie/random_compat (not required for PHP 7)

This commit is contained in:
Frédéric Guillot
2020-06-02 20:16:16 -07:00
parent 25f3f6f2d2
commit 884a8eb2c4
33 changed files with 224 additions and 1601 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Psr\Log\Test;
/**
* This class is internal and does not follow the BC promise.
*
* Do NOT use this class in any way.
*
* @internal
*/
class DummyTest
{
public function __toString()
{
return 'DummyTest';
}
}

View File

@@ -136,11 +136,3 @@ abstract class LoggerInterfaceTest extends TestCase
$this->assertEquals($expected, $this->getLogs());
}
}
class DummyTest
{
public function __toString()
{
return 'DummyTest';
}
}