Lots of changes, implemented the base usage. Beware of bugs and unfinished states

This commit is contained in:
Netkas 2023-06-12 21:32:35 -04:00
parent 0c23fdfac2
commit f20551857b
No known key found for this signature in database
GPG key ID: 5DAF58535614062B
27 changed files with 3045 additions and 71 deletions

View file

@ -1,13 +0,0 @@
<?php
namespace TamerLib\Exceptions;
use Throwable;
class RedisServerException extends \Exception
{
public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}