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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
<?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
*/
class TestSampleClass11
{
/**
* Doc block doSomething
* @return string
*/
public function doSomething()
{
return 'doSomething';
}
public function doSomethingElse($one, $two = 2, $three = 'three') { return 'doSomethingElse'; }
public function doSomethingAgain()
{
$closure = function($foo) { return $foo; };
return 'doSomethingAgain';
}
protected static function doStaticSomething()
{
return 'doStaticSomething';
}
public function inline1() { return 'inline1'; } public function inline2() { return 'inline2'; } public function inline3() { return 'inline3'; }
/**
* Awesome doc block
*/
public function emptyFunction() {}
public function visibility()
{
return 'visibility';
}
function getCacheKey() {
$args = func_get_args();
$cacheKey = '';
foreach($args as $arg) {
if (is_array($arg)) {
foreach ($arg as $argElement) {
$cacheKey = hash('sha256', $cacheKey.$argElement);
}
}
else {
$cacheKey = hash('sha256', $cacheKey.$arg);
}
//blah
}
return $cacheKey;
}
// //TODO - would it be better to define the binding like this?
// function __prototype() {
// $cacheKey = $this->getCacheKey($queryString);
// $cachedValue = $this->cache->get($cacheKey);
//
// if ($cachedValue) {
// return $cachedValue;
// }
// $result = parent::__prototype();
// $this->cache->put($cacheKey, $result);
// return $result;
// }
}
|