PHP code example of damejidlo / datetime-factory
1. Go to this page and download the library: Download damejidlo/datetime-factory 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/ */
damejidlo / datetime-factory example snippets
public function testXyz(\DateTimeImmutable $subjectTime)
{
$container = $this->createContainer();
$dateTimeFactory = Mockery::mock(DateTimeFactoryImmutable::class);
$dateTimeFactory->shouldReceive('getNow')->andReturn($subjectTime);
$container->removeService('dateTimeFactory');
$container->addService('dateTimeFactory', $dateTimeFactory);
}