1
0
Fork 0
php-language-server/tests/Validation/cases/functionUse.php

7 lines
68 B
PHP

<?php
$a = new A;
$b = function () use ($a) {
echo $a->b();
};