Blackfire\Player\Console\Application::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        error_reporting(-1);
        $version = '@git-version@';
        if ('@' . 'git-version@' == $version) {
            $composer = json_decode(file_get_contents(__DIR__ . '/../../composer.json'), true);
            $version = $composer['extra']['branch-alias']['dev-master'];
        }
        parent::__construct('Blackfire Player', $version);
        $this->add(new PlayerCommand());
    }
Application