php-censor/bin/console

20 lines
408 B
Plaintext
Raw Normal View History

#!/usr/bin/env php
<?php
2016-04-25 19:30:23 +02:00
2013-05-16 03:16:56 +02:00
/**
* 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/
2013-05-16 03:16:56 +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();