1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 21:55:09 -05:00
wallabag/console

13 lines
228 B
Plaintext
Raw Normal View History

2013-11-21 08:26:17 -05:00
#!/usr/bin/env php
<?php
set_time_limit(0);
require_once __DIR__.'/vendor/autoload.php';
require_once __DIR__.'/src/app.php';
$console = $app['console'];
2013-11-21 08:51:07 -05:00
$console->add(new Poche\Command\UnitTestsCommand());
$console->run();