#!/usr/bin/env php
<?php

declare(strict_types=1);

try {
    @require_once __DIR__ . '/../vendor/autoload.php';
} catch (\Throwable) {
    try {
        @require_once __DIR__ . '/../../autoload.php';
    } catch (\Throwable) {
        @require_once './vendor/autoload.php';
    }
}

use Quartetcom\StaticAnalysisKit\Application;

/** @noinspection PhpUnhandledExceptionInspection */
$app = (new Application())->run();
