mjacobus/nurse

View on GitHub
src/Factory/FactoryInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Nurse\Factory;

use Psr\Container\ContainerInterface;

interface FactoryInterface
{
    /**
     * @return mixed
     */
    public function createService(ContainerInterface $container);

    public function getKey(): string;
}