1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 00:34:04 +00:00
tenancy/src/Exceptions/PhpRedisNotInstalledException.php
Samuel Štancl 1b6759084f
Add Predis support (#59)
* wip

* Add Predis support

* Enable phpredis extension only for some builds

* Add note about phpredis

* Fix if command

* Revert travis changes & add a version check to predis tests
2019-07-03 14:48:55 +02:00

8 lines
246 B
PHP

<?php
namespace Stancl\Tenancy\Exceptions;
class PhpRedisNotInstalledException extends \Exception
{
protected $message = 'PhpRedis is not installed. PhpRedis is required for Redis multi-tenancy because Predis does not support prefixes.';
}