PHP code example of innmind / time-warp

1. Go to this page and download the library: Download innmind/time-warp 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/ */

    

innmind / time-warp example snippets


use Innmind\TimeWarp\{
    Halt\Usleep,
    Halt,
};
use Innmind\TimeContinuum\Earth\Period\Minute;

function yourApp(Halt $halt): void
{
    // do something
    $halt(new Minute(42));
    // do some more
}

yourApp(new Usleep);

use Innmind\TimeWarp\Halt\Logger;
use Psr\Log\LoggerInterface;

$halt = Logger::psr($halt, /** an instance of LoggerInterface */);