for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Oqq\Minc\Common\Collection\Exception;
use Oqq\Minc\Common\Exception\MincException;
/**
* @author Eric Braun <[email protected]>
*/
class ImmutableCollectionMutateException extends \RuntimeException implements MincException
{
const DEFAULT_MESSAGE = 'Try to mutate an immutable collection';
* @param string $message
* @param array ...$parameters
public function __construct($message = self::DEFAULT_MESSAGE, ...$parameters)
parent::__construct($message, ...$parameters);
}