You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
333 B
PHTML

8 years ago
#!/usr/bin/env php
8 years ago
<?php
8 years ago
$basedir = realpath(__DIR__ . '/../');
# All calls are now relative to the root directory
chdir($basedir);
8 years ago
8 years ago
include $basedir . '/vendor/autoload.php';
8 years ago
8 years ago
$core = new \Eater\Glim\Core();
$core->startTimer(["total"]);
$core->boot($basedir);
echo $core->get('user')->createInvite();
$core->endTimer(["total"]);
8 years ago