Skip to content

Commit 49a4f1d

Browse files
committed
Apply fixes from StyleCI
1 parent 4b12d4f commit 49a4f1d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/Renderer/HtmlRendererTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,7 @@ private function invokeMethod(object $object, string $method, array $args = [])
354354
{
355355
$reflection = new ReflectionObject($object);
356356
$method = $reflection->getMethod($method);
357-
$result = $method->invokeArgs($object, $args);
358-
return $result;
357+
return $method->invokeArgs($object, $args);
359358
}
360359

361360
private function setVendorPaths(HtmlRenderer $renderer, array $vendorPaths): void

0 commit comments

Comments
 (0)