22 lines
270 B
PHP
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();
|
||
|
}
|