for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Psh\Config;
/**
* Load configuration data from a file
*/
interface ConfigFileLoader
{
public function isSupported(string $file): bool;
public function load(string $file, array $params): Config;
}