This commit is contained in:
Simon L. 2026-02-03 15:51:58 +00:00 committed by GitHub
commit 82c4641287
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 30 additions and 2 deletions

View file

@ -1,6 +1,10 @@
<?php <?php
declare(strict_types=1);
$domain = $_GET['domain'] ?? ''; $domain = '';
if (isset($_GET['domain']) && is_string($_GET['domain'])) {
$domain = $_GET['domain'];
}
if (!str_contains($domain, '.')) { if (!str_contains($domain, '.')) {
http_response_code(400); http_response_code(400);

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Auth; namespace AIO\Auth;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Auth; namespace AIO\Auth;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Container; namespace AIO\Container;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO; namespace AIO;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Controller; namespace AIO\Controller;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Controller; namespace AIO\Controller;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Controller; namespace AIO\Controller;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Data; namespace AIO\Data;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Data; namespace AIO\Data;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Data; namespace AIO\Data;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO; namespace AIO;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Docker; namespace AIO\Docker;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Docker; namespace AIO\Docker;

View file

@ -1,5 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Docker; namespace AIO\Docker;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Middleware; namespace AIO\Middleware;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Twig; namespace AIO\Twig;

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
namespace AIO\Twig; namespace AIO\Twig;