Remove all calls to ReflectionProperty::setAccessible

This commit is contained in:
Alejandro Celaya
2025-10-28 11:03:41 +01:00
parent fc54a25c32
commit 532700028a
4 changed files with 0 additions and 4 deletions

View File

@@ -51,7 +51,6 @@ class ShlinkTableTest extends TestCase
$ref = new ReflectionObject($instance);
$baseTable = $ref->getProperty('baseTable');
$baseTable->setAccessible(true);
self::assertInstanceOf(Table::class, $baseTable->getValue($instance));
}