for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Puzzle\Assert;
trait ExampleDataProvider
{
private function buildGenerator()
$closure = function () { yield 3; };
return $closure();
}