/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
symfony
/
var-dumper
/
Tests
/
Fixtures
/
Upload File
HOME
<?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(); }