<?php class Job { public function __destruct() { echo 'Destructing Job...' . PHP_EOL; } public function start() { echo 'Starting...' . PHP_EOL; } } function wp_send_json($result) { echo 'Exiting' . PHP_EOL; exit; } wp_send_json((new Job)->start());
You have javascript disabled. You will not be able to edit any code.