golden hour
/home/phakp/public_html/erp/includes/symfony/var-dumper/Tests/Fixtures
⬆️ Go Up
Upload
File/Folder
Size
Actions
FooInterface.php
134 B
Del
OK
GeneratorDemo.php
270 B
Del
OK
NotLoadableClass.php
114 B
Del
OK
Twig.php
723 B
Del
OK
dumb-var.php
817 B
Del
OK
xml_reader.xml
223 B
Del
OK
Edit: GeneratorDemo.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(); }
Save