for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Containers\Demo\Factory;
use App\Containers\Demo\Interface\TestInterface;
use Rudra\Container\Interfaces\FactoryInterface;
class TestFactory implements TestInterface, FactoryInterface
{
public string $method;
public function create(): object
$this->method = __METHOD__ . '->autowired';
return $this;
}