for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ElePHPant\Cookie\Exceptions;
use Exception;
class MissingDriversException extends Exception
{
public function __construct(array $missingDrivers)
$missingDriversStr = implode(', ', $missingDrivers);
$message = "Missing drivers: $missingDriversStr";
parent::__construct($message);
}