Skip to content

Commit 6153a58

Browse files
committed
Remove unused method
1 parent 5b9253c commit 6153a58

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/StubTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -387,12 +387,6 @@ public function testStubMakeEmptyInterface()
387387
$stub = Stub::makeEmpty(Countable::class, ['count' => 5]);
388388
$this->assertEquals(5, $stub->count());
389389
}
390-
391-
private function assertObjectHasProperty(string $propertyName, object $object): void
392-
{
393-
$hasProperty = (new ReflectionObject($object))->hasProperty($propertyName);
394-
$this->assertTrue($hasProperty, sprintf("Object has no attribute %s", $propertyName));
395-
}
396390
}
397391

398392
class MyClassWithPrivateProperties

0 commit comments

Comments
 (0)