Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[10.x] Remove redundant 'setAccessible' methods #47348

Merged
merged 2 commits into from
Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/Illuminate/Console/Scheduling/ScheduleListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,7 @@ private function formatCronExpression($expression, $spacing)
*/
private function getClosureLocation(CallbackEvent $event)
{
$callback = tap((new ReflectionClass($event))->getProperty('callback'))
->setAccessible(true)
->getValue($event);
$callback = (new ReflectionClass($event))->getProperty('callback')->getValue($event);

if ($callback instanceof Closure) {
$function = new ReflectionFunction($callback);
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Console/View/Components/Component.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,6 @@ protected function usingQuestionHelper($callable)
->getParentClass()
->getProperty('questionHelper');

$property->setAccessible(true);

$currentHelper = $property->isInitialized($this->output)
? $property->getValue($this->output)
: new SymfonyQuestionHelper();
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Database/Eloquent/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1976,8 +1976,6 @@ protected static function registerMixin($mixin, $replace)

foreach ($methods as $method) {
if ($replace || ! static::hasGlobalMacro($method->name)) {
$method->setAccessible(true);

static::macro($method->name, $method->invoke($mixin));
}
}
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2227,8 +2227,6 @@ protected static function getAttributeMarkedMutatorMethods($class)

if ($returnType instanceof ReflectionNamedType &&
$returnType->getName() === Attribute::class) {
$method->setAccessible(true);

if (is_callable($method->invoke($instance)->get)) {
return true;
}
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Macroable/Traits/Macroable.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public static function mixin($mixin, $replace = true)

foreach ($methods as $method) {
if ($replace || ! static::hasMacro($method->name)) {
$method->setAccessible(true);
static::macro($method->name, $method->invoke($mixin));
}
}
Expand Down
6 changes: 0 additions & 6 deletions src/Illuminate/Queue/SerializesModels.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ public function __serialize()
continue;
}

$property->setAccessible(true);

if (! $property->isInitialized($this)) {
continue;
}
Expand Down Expand Up @@ -82,8 +80,6 @@ public function __unserialize(array $values)
continue;
}

$property->setAccessible(true);

$property->setValue(
$this, $this->getRestoredPropertyValue($values[$name])
);
Expand All @@ -98,8 +94,6 @@ public function __unserialize(array $values)
*/
protected function getPropertyValue(ReflectionProperty $property)
{
$property->setAccessible(true);

return $property->getValue($this);
}
}
2 changes: 0 additions & 2 deletions src/Illuminate/Testing/TestResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -1657,8 +1657,6 @@ protected function appendMessageToException($message, $exception)
{
$property = new ReflectionProperty($exception, 'message');

$property->setAccessible(true);

$property->setValue(
$exception,
$exception->getMessage().PHP_EOL.PHP_EOL.$message.PHP_EOL
Expand Down
1 change: 0 additions & 1 deletion tests/Cookie/CookieTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ public function getCreator()
private function getQueuedPropertyValue(CookieJar $cookieJar)
{
$property = (new ReflectionObject($cookieJar))->getProperty('queued');
$property->setAccessible(true);

return $property->getValue($cookieJar);
}
Expand Down
4 changes: 0 additions & 4 deletions tests/Database/DatabaseConnectionFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ public function testSingleConnectionNotCreatedUntilNeeded()
{
$connection = $this->db->getConnection();
$pdo = new ReflectionProperty(get_class($connection), 'pdo');
$pdo->setAccessible(true);
$readPdo = new ReflectionProperty(get_class($connection), 'readPdo');
$readPdo->setAccessible(true);

$this->assertNotInstanceOf(PDO::class, $pdo->getValue($connection));
$this->assertNotInstanceOf(PDO::class, $readPdo->getValue($connection));
Expand All @@ -102,9 +100,7 @@ public function testReadWriteConnectionsNotCreatedUntilNeeded()
{
$connection = $this->db->getConnection('read_write');
$pdo = new ReflectionProperty(get_class($connection), 'pdo');
$pdo->setAccessible(true);
$readPdo = new ReflectionProperty(get_class($connection), 'readPdo');
$readPdo->setAccessible(true);

$this->assertNotInstanceOf(PDO::class, $pdo->getValue($connection));
$this->assertNotInstanceOf(PDO::class, $readPdo->getValue($connection));
Expand Down
2 changes: 0 additions & 2 deletions tests/Database/DatabaseConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,6 @@ public function testOnLostConnectionPDOIsSwappedOutsideTransaction()
public function testRunMethodRetriesOnFailure()
{
$method = (new ReflectionClass(Connection::class))->getMethod('run');
$method->setAccessible(true);

$pdo = $this->createMock(DatabaseConnectionTestMockPDO::class);
$mock = $this->getMockConnection(['tryAgainIfCausedByLostConnection'], $pdo);
Expand All @@ -429,7 +428,6 @@ public function testRunMethodNeverRetriesIfWithinTransaction()
$this->expectExceptionMessage('(Connection: conn, SQL: ) (Connection: , SQL: )');

$method = (new ReflectionClass(Connection::class))->getMethod('run');
$method->setAccessible(true);

$pdo = $this->getMockBuilder(DatabaseConnectionTestMockPDO::class)->onlyMethods(['beginTransaction'])->getMock();
$mock = $this->getMockConnection(['tryAgainIfCausedByLostConnection'], $pdo);
Expand Down
1 change: 0 additions & 1 deletion tests/Database/DatabaseEloquentFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,6 @@ public function test_counted_sequence()

$class = new ReflectionClass($factory);
$prop = $class->getProperty('count');
$prop->setAccessible(true);
$value = $prop->getValue($factory);

$this->assertSame(3, $value);
Expand Down
1 change: 0 additions & 1 deletion tests/Database/DatabaseEloquentModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,6 @@ public function testGetArrayableRelationsFunctionExcludeHiddenRelationships()

$class = new ReflectionClass($model);
$method = $class->getMethod('getArrayableRelations');
$method->setAccessible(true);

$model->setRelation('foo', ['bar']);
$model->setRelation('bam', ['boom']);
Expand Down
4 changes: 2 additions & 2 deletions tests/Database/DatabaseMySqlSchemaStateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ public function testConnectionString(string $expectedConnectionString, array $ex

// test connectionString
$method = new ReflectionMethod(get_class($schemaState), 'connectionString');
$connString = tap($method)->setAccessible(true)->invoke($schemaState);
$connString = $method->invoke($schemaState);

self::assertEquals($expectedConnectionString, $connString);

// test baseVariables
$method = new ReflectionMethod(get_class($schemaState), 'baseVariables');
$variables = tap($method)->setAccessible(true)->invoke($schemaState, $dbConfig);
$variables = $method->invoke($schemaState, $dbConfig);

self::assertEquals($expectedVariables, $variables);
}
Expand Down
6 changes: 3 additions & 3 deletions tests/Foundation/Bootstrap/HandleExceptionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ protected function setUp(): void
$this->handleExceptions = new HandleExceptions();

with(new ReflectionClass($this->handleExceptions), function ($reflection) {
$property = tap($reflection->getProperty('app'))->setAccessible(true);
$property = $reflection->getProperty('app');

$property->setValue(
$this->handleExceptions,
Expand Down Expand Up @@ -324,7 +324,7 @@ public function testIgnoreDeprecationIfLoggerUnresolvable()
public function testForgetApp()
{
$appResolver = fn () => with(new ReflectionClass($this->handleExceptions), function ($reflection) {
$property = tap($reflection->getProperty('app'))->setAccessible(true);
$property = $reflection->getProperty('app');

return $property->getValue($this->handleExceptions);
});
Expand All @@ -339,7 +339,7 @@ public function testForgetApp()
public function testHandlerForgetsPreviousApp()
{
$appResolver = fn () => with(new ReflectionClass($this->handleExceptions), function ($reflection) {
$property = tap($reflection->getProperty('app'))->setAccessible(true);
$property = $reflection->getProperty('app');

return $property->getValue($this->handleExceptions);
});
Expand Down
4 changes: 0 additions & 4 deletions tests/Foundation/Console/CliDumperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ public function testWhenIsFileViewIsNotViewCompiled()

$reflection = new ReflectionClass($dumper);
$method = $reflection->getMethod('isCompiledViewFile');
$method->setAccessible(true);
$isCompiledViewFile = $method->invoke($dumper, $file);

$this->assertFalse($isCompiledViewFile);
Expand All @@ -140,7 +139,6 @@ public function testWhenIsFileViewIsViewCompiled()

$reflection = new ReflectionClass($dumper);
$method = $reflection->getMethod('isCompiledViewFile');
$method->setAccessible(true);
$isCompiledViewFile = $method->invoke($dumper, $file);

$this->assertTrue($isCompiledViewFile);
Expand All @@ -160,7 +158,6 @@ public function testGetOriginalViewCompiledFile()

$reflection = new ReflectionClass($dumper);
$method = $reflection->getMethod('getOriginalFileForCompiledView');
$method->setAccessible(true);

$this->assertSame($original, $method->invoke($dumper, $compiled));
}
Expand All @@ -179,7 +176,6 @@ public function testWhenGetOriginalViewCompiledFileFails()

$reflection = new ReflectionClass($dumper);
$method = $reflection->getMethod('getOriginalFileForCompiledView');
$method->setAccessible(true);

$this->assertSame($original, $method->invoke($dumper, $compiled));
}
Expand Down
4 changes: 0 additions & 4 deletions tests/Foundation/Http/HtmlDumperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ public function testWhenIsFileViewIsNotViewCompiled()

$reflection = new ReflectionClass($dumper);
$method = $reflection->getMethod('isCompiledViewFile');
$method->setAccessible(true);
$isCompiledViewFile = $method->invoke($dumper, $file);

$this->assertFalse($isCompiledViewFile);
Expand All @@ -133,7 +132,6 @@ public function testWhenIsFileViewIsViewCompiled()

$reflection = new ReflectionClass($dumper);
$method = $reflection->getMethod('isCompiledViewFile');
$method->setAccessible(true);
$isCompiledViewFile = $method->invoke($dumper, $file);

$this->assertTrue($isCompiledViewFile);
Expand All @@ -151,7 +149,6 @@ public function testGetOriginalViewCompiledFile()

$reflection = new ReflectionClass($dumper);
$method = $reflection->getMethod('getOriginalFileForCompiledView');
$method->setAccessible(true);

$this->assertSame($original, $method->invoke($dumper, $compiled));
}
Expand All @@ -168,7 +165,6 @@ public function testWhenGetOriginalViewCompiledFileFails()

$reflection = new ReflectionClass($dumper);
$method = $reflection->getMethod('getOriginalFileForCompiledView');
$method->setAccessible(true);

$this->assertSame($original, $method->invoke($dumper, $compiled));
}
Expand Down
4 changes: 2 additions & 2 deletions tests/Foundation/Testing/BootTraitsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ public function testSetUpAndTearDownTraits()
$testCase = new TestCaseWithTrait('foo');

$method = new ReflectionMethod($testCase, 'setUpTraits');
tap($method)->setAccessible(true)->invoke($testCase);
$method->invoke($testCase);

$this->assertTrue($testCase->setUp);

$method = new ReflectionMethod($testCase, 'callBeforeApplicationDestroyedCallbacks');
tap($method)->setAccessible(true)->invoke($testCase);
$method->invoke($testCase);

$this->assertTrue($testCase->tearDown);
}
Expand Down
2 changes: 0 additions & 2 deletions tests/Foundation/Testing/DatabaseMigrationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ private function __reflectAndSetupAccessibleForProtectedTraitMethod($methodName)
$methodName
);

$migrateFreshUsingReflection->setAccessible(true);

return $migrateFreshUsingReflection;
}

Expand Down
2 changes: 0 additions & 2 deletions tests/Foundation/Testing/RefreshDatabaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ private function __reflectAndSetupAccessibleForProtectedTraitMethod($methodName)
$methodName
);

$migrateFreshUsingReflection->setAccessible(true);

return $migrateFreshUsingReflection;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ private function __reflectAndSetupAccessibleForProtectedTraitMethod($methodName)
$methodName
);

$migrateFreshUsingReflection->setAccessible(true);

return $migrateFreshUsingReflection;
}

Expand Down
1 change: 0 additions & 1 deletion tests/Integration/Queue/JobDispatchingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ public function testUniqueJobLockIsReleasedForJobDispatchedAfterResponse()
{
// get initial terminatingCallbacks
$terminatingCallbacksReflectionProperty = (new \ReflectionObject($this->app))->getProperty('terminatingCallbacks');
$terminatingCallbacksReflectionProperty->setAccessible(true);
$startTerminatingCallbacks = $terminatingCallbacksReflectionProperty->getValue($this->app);

UniqueJob::dispatchAfterResponse('test');
Expand Down
Loading