Skip to content

Commit

Permalink
remove UnexportableValue2.php
Browse files Browse the repository at this point in the history
Signed-off-by: gennadigennadigennadi <gennadijanzen@icloud.com>
  • Loading branch information
gennadigennadigennadi committed Oct 4, 2020
1 parent 13399d0 commit 9d09679
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
6 changes: 2 additions & 4 deletions test/Resolver/ValueInjectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected function setUp(): void
{
parent::setUp();

if (! $this->streamFixture) {
if (!$this->streamFixture) {
$this->streamFixture = fopen('php://temp', 'w+');
}
}
Expand Down Expand Up @@ -126,16 +126,14 @@ public function provideExportableValues()

public function provideUnexportableItems()
{
if (! $this->streamFixture) {
if (!$this->streamFixture) {
$this->streamFixture = fopen('php://temp', 'w+');
}

return [
'stream' => [$this->streamFixture],
'noSetState' => [new TestAsset\Resolver\UnexportableValue1()],
'privateSetState' => [new TestAsset\Resolver\UnexportableValue2()],
'arrayNoSetState' => [[new TestAsset\Resolver\UnexportableValue1()]],
'arrayPrivateSetState' => [[new TestAsset\Resolver\UnexportableValue2()]],
];
}

Expand Down
18 changes: 0 additions & 18 deletions test/TestAsset/Resolver/UnexportableValue2.php

This file was deleted.

0 comments on commit 9d09679

Please sign in to comment.