Remove unused StandardMethods and improve session logic

This commit is contained in:
netkas 2024-12-12 04:33:10 -05:00
parent 86435a3d0b
commit 701acfde35
30 changed files with 1032 additions and 704 deletions

View file

@ -1,14 +1,14 @@
<?php
namespace Socialbox\Exceptions;
namespace Socialbox\Exceptions;
use Exception;
use Throwable;
use Exception;
use Throwable;
class DatabaseOperationException extends Exception
{
public function __construct(string $message, ?Throwable $throwable=null)
class DatabaseOperationException extends Exception
{
parent::__construct($message, 500, $throwable);
}
}
public function __construct(string $message, ?Throwable $throwable=null)
{
parent::__construct($message, 500, $throwable);
}
}