add open orders api route
This commit is contained in:
parent
5de80b0da0
commit
96b246462a
5 changed files with 79 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
<?php declare(strict_types=1);
|
||||
|
||||
use Symfony\Component\Dotenv\Dotenv;
|
||||
use Symfony\Component\Filesystem\Filesystem;
|
||||
|
||||
require dirname(__DIR__) . '/vendor/autoload.php';
|
||||
|
||||
|
@ -13,3 +14,6 @@ if (method_exists(Dotenv::class, 'bootEnv')) {
|
|||
if ($_SERVER['APP_DEBUG']) {
|
||||
umask(0o000);
|
||||
}
|
||||
|
||||
$fs = new Filesystem;
|
||||
$fs->remove(dirname(__DIR__) . '/../var/cache/*');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue