#!/usr/bin/php getPlugins()["netsync"] ?? null; if ($instance === null) { throw new RuntimeException("Plugin is not enabled"); } /** * @var Netsync $instance */ $config = $instance->sync(); var_dump($config); } catch (Exception $e) { echo "\nError:" . $e->getMessage() . "\n"; exit(1); } exit(0);