web/vendor/thecodingmachine/phpstan-safe-rule/tests/Rules/data/undirect_call.php
2019-03-07 12:11:50 -06:00

5 lines
72 B
PHP

<?php
function foo() {
$toto = 'fopen';
$toto('foobar', 'r');
}