コード例 #1
0
ファイル: FCall.php プロジェクト: ovr/phpsa
 /**
  * @return mixed
  */
 public function failedCallToUndefinedFunction()
 {
     return undefinedFunction();
 }
コード例 #2
0
ファイル: UsedFunctions.08.php プロジェクト: exakat/exakat
<?php

function definedFunction()
{
}
definedFunction();
undefinedFunction();
definedMethodUsedAsFunction();
$closure = function () {
};