Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpif (! 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 app('clockwork');}foreach ($arguments as $argument) {app('clockwork')->debug($argument);}return reset($arguments);}}