php-censor/bin/console
2017-02-05 15:37:46 +07:00

20 lines
408 B
PHP
Executable file

#!/usr/bin/env php
<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2013, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link http://www.phptesting.org/
*/
use PHPCensor\Console\Application;
error_reporting(-1);
ini_set('display_errors', 1);
require_once(dirname(__DIR__) . '/bootstrap.php');
(new Application())->run();