🎨 PHP CS Fixer

This commit is contained in:
Eric Espie
2025-11-27 11:45:38 +01:00
parent 8f39e69002
commit 8401aa1aec
8 changed files with 10 additions and 12 deletions

View File

@@ -17,7 +17,6 @@ class OqlController extends AbstractController
{
public const ROUTE_NAMESPACE = 'oql';
public function OperationValidateQuery()
{
$oPage = new JsonPage();
@@ -26,12 +25,11 @@ class OqlController extends AbstractController
$data = json_decode(file_get_contents('php://input'), true);
$sOql = $data['query'];
try{
try {
/** @var ModelReflection $oModelReflection */
$oModelReflexion = new ModelReflectionRuntime();
$oModelReflexion->GetQuery($sOql);
}
catch(Exception $e){
} catch (Exception $e) {
}