Fix coding style with phpcs PSR-12 standard

Signed-off-by: davidarendsen <davidarendsen@hey.com>
This commit is contained in:
davidarendsen 2022-08-15 20:28:25 +00:00
commit 39ae737fa1
30 changed files with 264 additions and 205 deletions

View file

@ -4,4 +4,6 @@ namespace Arendsen\FluxQueryBuilder\Exception;
use Exception;
class ExpressionNotImplementedException extends Exception {}
class ExpressionNotImplementedException extends Exception
{
}

View file

@ -4,4 +4,6 @@ namespace Arendsen\FluxQueryBuilder\Exception;
use Exception;
class FunctionNotImplementedException extends Exception {}
class FunctionNotImplementedException extends Exception
{
}

View file

@ -4,11 +4,10 @@ namespace Arendsen\FluxQueryBuilder\Exception;
use Exception;
class FunctionRequiredSettingMissingException extends Exception {
class FunctionRequiredSettingMissingException extends Exception
{
public function __construct(string $functionName, string $message)
{
parent::__construct('Function ' . $functionName . ' - ' . $message);
}
}
}