Lines Matching refs:alpha
14 $alpha = new Alpha();
16 echo "alpha.bravo: ", $alpha->bravo().PHP_EOL;
18 $reflection = new ReflectionObject($alpha);
21 $closure = $method->getClosure($alpha);
25 echo "reflection of alpha.bravo: ", $method->invoke($alpha).PHP_EOL;
26 echo "closure of alpha.bravo: ", $closure().PHP_EOL;
29 echo "closure cl of c(alpha.bravo): ", get_class($reflectionC->getClosureThis()).PHP_EOL;
30 echo "scope cl of c(alpha.bravo): ", $reflectionC->getClosureScopeClass()->getName().PHP_EOL;
31 echo "reflection of c(alpha.bravo): ", $reflectionC->invoke().PHP_EOL;
35 alpha.bravo: Valid representation
36 reflection of alpha.bravo: Valid representation
37 closure of alpha.bravo: Valid representation
40 closure cl of c(alpha.bravo): Alpha
41 scope cl of c(alpha.bravo): Alpha
42 reflection of c(alpha.bravo): Valid representation