Files
faveo/vendor/sly/notification-pusher/np
2023-01-30 14:33:06 +05:30

14 lines
267 B
PHP
Executable File

#!/usr/bin/env php
<?php
if (file_exists($a = __DIR__.'/../../autoload.php')) {
require_once $a;
} else {
require_once __DIR__.'/vendor/autoload.php';
}
use Sly\NotificationPusher\Console\Application;
$application = new Application();
$application->run();