Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpuse Clockwork\Support\Vanilla\Clockwork;if (! function_exists('clock')) {// Log a message to Clockwork, returns Clockwork instance when called with no arguments, first argument otherwisefunction clock(...$arguments){if (empty($arguments)) {return Clockwork::instance();}foreach ($arguments as $argument) {Clockwork::debug($argument);}return reset($arguments);}}