Current File : /home/itiffy/public_html/vendor/phpunit/phpunit/tests/_files/TestGeneratorMaker.php
<?php
class TestGeneratorMaker
{
    public function create($array = [])
    {
        foreach ($array as $key => $value) {
            yield $key => $value;
        }
    }
}