mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 00:34:04 +00:00
* 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
8 lines
246 B
PHP
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.';
|
|
}
|