2
0
forked from Wavyzz/dolibarr
Files
Laurent Destailleur 198b8d8d2b debugbar ok with php5.6
2020-09-08 02:59:49 +02:00

22 lines
270 B
PHP

<?php
namespace Symfony\Component\VarDumper\Tests\Fixtures;
class GeneratorDemo
{
public static function foo()
{
yield 1;
}
public function baz()
{
yield from bar();
}
}
function bar()
{
yield from GeneratorDemo::foo();
}