for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Barryvanveen\CCA\Factories;
use Barryvanveen\CCA\CCA;
use Barryvanveen\CCA\Config;
class CCAFactory
{
public static function create(Config $config)
return new CCA($config, GridFactory::create($config));
}