#!/usr/bin/php (2018-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Cron * */ // Check if we're in the CLI if (@php_sapi_name() !== 'cli') { die('This script will only work in the shell.'); } require dirname(__DIR__) . '/vendor/autoload.php'; // give control to command line handler try { \Froxlor\Cli\PhpSessioncleanCmd::processParameters($argc, $argv); } catch (Exception $e) { \Froxlor\Cli\PhpSessioncleanCmd::printerr($e->getMessage()); exit(1); }