php-censor/bin/console

12 lines
194 B
Plaintext
Raw Normal View History

#!/usr/bin/env php
<?php
2016-04-25 19:30:23 +02:00
use PHPCensor\Console\Application;
2017-01-11 16:15:54 +01:00
error_reporting(-1);
ini_set('display_errors', 1);
2016-04-21 19:05:32 +02:00
require_once(dirname(__DIR__) . '/bootstrap.php');
(new Application())->run();