for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hiqdev\billing\hiapi\repositories;
use hiqdev\php\billing\Plan;
use ReflectionClass;
class PlanFactory
{
protected $class = Plan::class;
public function createPrototype()
return (new ReflectionClass($this->class))->newInstanceWithoutConstructor();
}