Move Exceptions in a separate directory + Fixed Range function

Signed-off-by: davidarendsen <davidarendsen@hey.com>
This commit is contained in:
davidarendsen 2022-08-12 12:58:29 +00:00
commit 648709bd19
9 changed files with 47 additions and 19 deletions

View file

@ -2,6 +2,8 @@
namespace Arendsen\FluxQueryBuilder\Expression;
use Arendsen\FluxQueryBuilder\Exception\ExpressionNotImplementedException;
abstract class Base {
/**

View file

@ -1,7 +0,0 @@
<?php
namespace Arendsen\FluxQueryBuilder\Expression;
use Exception;
class ExpressionNotImplementedException extends Exception {}