Welcome to mirror list, hosted at ThFree Co, Russian Federation.

call.test « expr « prettyPrinter « code « test « php-parser « nikic « vendor - github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ec8925cf2970605c4f389b374124ebe20af45b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Calls
-----
<?php

f($a);
f(&$a);
f(...$a);
f($a, &$b, ...$c);
-----
f($a);
f(&$a);
f(...$a);
f($a, &$b, ...$c);