File "ProHelper.php"

Full Path: /home/bettaeza/flyinsyria.com/app/.well-known/app/Helpers/ProHelper.php
File size: 344 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
function isPro()
{
    if (class_exists('\App\Pro\Pro')) {
        return \App\Pro\Pro::isPro();
    }
    return false;
}

function isProEnable()
{
    if (class_exists('\App\Pro\Pro')) {
        return \App\Pro\Pro::isEnable();
    }
    return false;
}

function proVersion()
{
    return config('pro.version');
}