for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Rémy M. Böhler <[email protected]>
*/
declare(strict_types=1);
namespace Rorm;
class ModelBuilder
{
public function build(string $className)
return new $className;
}