PHP code example of nanaweb / clock

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

    

nanaweb / clock example snippets




class SomeClass
{
    private $clock;

    public function __construct(\Nanaweb\Clock $clock)
    {
        $this->clock = $clock;
    }

    public function getFiveHourLater()
    {
        /** @var \DateTimeImmutable $now */
        $now = $this->clock->now();

        return $now->add(new \DateInterval('PT5H')); //
    }
}



class SomeClass2
{
    private $clock;

    public function __construct(\Nanaweb\Clock $clock)
    {
        $this->clock = $clock;
    }

    public function getFiveDaysAgo()
    {
        /** @var \DateTimeImmutable $today */
        $today = $this->clock->today();

        return $today->sub(new \DateInterval('P5D')); // 00:00:00 of five days ago
    }
}



class SomeClassTest extends TestCase
{
    public function test_fiveHoursAgo()
    {
        $clockP = $this->prophesize(\Nanaweb\Clock::class);
        $clockP->now()->willReturn(new \DateTimeImmutable('2020-05-16 10:00:00'))->shouldBeCalled();

        $SUT = new SomeClass($clockP->reveal());
        $this->assertEquals('2020-05-16 15:00:00', $SUT->getFiveHoursLater());
    }
}