for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ElePHPant\Cookie\Exceptions;
use Exception;
class InvalidConfigException extends Exception
{
public function __construct(array $invalidConfigs)
$invalidConfigsStr = implode(', ', $invalidConfigs);
$message = "Invalid config driver(s): $invalidConfigsStr";
parent::__construct($message);
}