for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Leonidas\Framework\Provider;
use Panamax\Contracts\ServiceFactoryInterface;
use Panamax\Factories\AbstractServiceFactory;
use Psr\Container\ContainerInterface;
use WebTheory\Context\Selector;
class ContextSelectorProvider extends AbstractServiceFactory implements ServiceFactoryInterface
{
public function create(ContainerInterface $container, array $args = []): Selector
return new Selector($args['selections'], $args['contexts']);
}