tflori/dependency-injector

View on GitHub
src/PatternFactoryInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace DependencyInjector;

interface PatternFactoryInterface extends FactoryInterface
{
    public function matches(string $name): bool;
    public function getInstance($name = null, ...$args);
}