Fix coding standards and coverage issues

This commit is contained in:
Ben Ramsey
2021-09-23 14:07:00 -05:00
parent c9ed6dd82f
commit 90031b396c
9 changed files with 15 additions and 20 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ class StringCodecTest extends TestCase
/** @var string */
private $uuidString = '12345678-1234-abcd-abef-1234abcd4321';
protected function set_up()
protected function set_up() // phpcs:ignore
{
parent::set_up();
$this->builder = $this->getMockBuilder('Ramsey\Uuid\Builder\UuidBuilderInterface')->getMock();
@@ -37,7 +37,7 @@ class StringCodecTest extends TestCase
'node' => '1234abcd4321'];
}
protected function tear_down()
protected function tear_down() // phpcs:ignore
{
parent::tear_down();
$this->builder = null;