D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
vendor
/
symfony
/
var-dumper
/
Tests
/
Fixtures
/
Filename :
GeneratorDemo.php
back
Copy
<?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(); }