18 lines
199 B
PHP
18 lines
199 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
* @file
|
|
* Functions needed for Thelia bootstrap
|
|
*/
|
|
$env = "test";
|
|
require_once __DIR__ . '/../../../bootstrap.php';
|
|
|
|
use Thelia\Core\Thelia;
|
|
|
|
$thelia = new Thelia("test", true);
|
|
|
|
|
|
|
|
|