#!/usr/bin/env php
<?php
/*
 * This file is part of phpcov.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

// Ensure correct include_path for RHSCL
$inc = get_include_path();
$dirs = explode(':', $inc);
if (!in_array('/usr/share/php', $dirs)) {
    $dirs[] = '/usr/share/php';
    set_include_path(implode(':', $dirs));
}
unset ($inc, $dirs);

require 'SebastianBergmann/PHPCOV/autoload.php';

$application = new SebastianBergmann\PHPCOV\Application;
$application->run();
