Jagepard/Rudra-Framework

View on GitHub
app/Containers/Web/Factory/TestFactory.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Containers\Web\Factory;

use App\Containers\Web\Interface\TestInterface;

class TestFactory implements TestInterface
{
    public string $method;

    public function create()
    {
        $this->method = __METHOD__ . '->autowired';
        return $this;
    }
}