1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
<?php
/**
* @see https://github.com/laminas/laminas-code for the canonical source repository
* @copyright https://github.com/laminas/laminas-code/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-code/blob/master/LICENSE.md New BSD License
*/
namespace LaminasTest\Code\Reflection\TestAsset;
/***
* /!\ Don't fix this file with the coding style.
* The class Laminas\Code\Reflection\FunctionReflection must parse a lot of closure formats
*/
function function1()
{
return 'function1';
}
/**
* Laminas Function Two
*
* This is the long description for function two
*
* @param string $one
* @param string $two
* @return string
*/
function function2($one, $two = 'two')
{
return 'blah';
}
/**
* Enter description here...
*
* @param string $one
* @param int $two
* @return true
*/
function function3($one, $two = 2)
{
return true;
}
function function4($arg) {
return 'function4';
}
function function5() { return 'function5'; }
function function6()
{
$closure = function() { return 'bar'; };
return 'function6';
}
$foo = 'foo'; function function7() { return 'function7'; }
function function8() { return 'function8'; } function function9() { return 'function9'; }
function function10() { $closure = function() { return 'function10'; }; return $closure(); } function function11() { return 'function11'; }
function function12() {}
|