Skip to content

Commit ccd63cb

Browse files
committed
change call_user_func* with self invoked function
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
1 parent 7e94866 commit ccd63cb

3 files changed

+3
-5
lines changed

test/CommonServiceLocatorBehaviorsTrait.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
use function array_fill_keys;
3434
use function array_keys;
3535
use function array_merge;
36-
use function call_user_func_array;
3736
use function restore_error_handler;
3837
use function set_error_handler;
3938

@@ -812,7 +811,7 @@ public function testConfiguringInstanceRaisesExceptionIfAllowOverrideIsFalse($me
812811
$container = $this->createContainer(['services' => ['foo' => $this]]);
813812
$container->setAllowOverride(false);
814813
$this->expectException(ContainerModificationsNotAllowedException::class);
815-
call_user_func_array([$container, $method], $args);
814+
$container->$method(...$args);
816815
}
817816

818817
/**

test/TestAsset/PassthroughDelegatorFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ class PassthroughDelegatorFactory implements DelegatorFactoryInterface
1919
*/
2020
public function __invoke(ContainerInterface $container, $name, callable $callback, array $options = null)
2121
{
22-
return call_user_func($callback);
22+
return $callback();
2323
}
2424
}

test/TestAsset/V2ValidationPluginManager.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use Laminas\ServiceManager\AbstractPluginManager;
1212
use RuntimeException;
1313

14-
use function call_user_func;
1514
use function is_callable;
1615
use function sprintf;
1716

@@ -28,6 +27,6 @@ public function validatePlugin($plugin)
2827
));
2928
}
3029

31-
call_user_func($this->assertion, $plugin);
30+
($this->assertion)($plugin);
3231
}
3332
}

0 commit comments

Comments
 (0)