(int $required)
| 794 | } |
| 795 | if (!function_exists('fr_pro_api_level_at_least')) { |
| 796 | function fr_pro_api_level_at_least(int $required): bool |
| 797 | { |
| 798 | $current = defined('FR_PRO_API_LEVEL') ? (int)FR_PRO_API_LEVEL : 0; |
| 799 | return $current >= $required; |
| 800 | } |
| 801 | } |
| 802 | |
| 803 | $proBootstrap = FR_PRO_BUNDLE_DIR . '/bootstrap_pro.php'; |
no outgoing calls
no test coverage detected