PHP code example of itsgoingd / clockwork

1. Go to this page and download the library: Download itsgoingd/clockwork library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

itsgoingd / clockwork example snippets


clock(User::first(), auth()->user(), $username)

User::create(clock($request->all()))

clock()->info("User {$username} logged in!")

// using timeline api with begin/end and fluent configuration
clock()->event('Importing tweets')->color('purple')->begin();
    ...
clock()->event('Importing tweets')->end();

// using timeline api with run and array-based configuration
clock()->event('Updating cache', [ 'color' => 'green' ])->run(function () {
    ...
});