web/bin/create-invite.php

16 lines
333 B
PHP
Raw Normal View History

2016-04-05 00:19:21 +00:00
#!/usr/bin/env php
2016-04-03 13:10:16 +00:00
<?php
2016-06-03 18:13:46 +00:00
$basedir = realpath(__DIR__ . '/../');
# All calls are now relative to the root directory
chdir($basedir);
2016-04-03 13:10:16 +00:00
2016-06-03 18:13:46 +00:00
include $basedir . '/vendor/autoload.php';
2016-04-03 13:10:16 +00:00
2016-06-03 18:13:46 +00:00
$core = new \Eater\Glim\Core();
$core->startTimer(["total"]);
$core->boot($basedir);
echo $core->get('user')->createInvite();
$core->endTimer(["total"]);
2016-04-03 13:10:16 +00:00