mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
18 lines
356 B
PHP
18 lines
356 B
PHP
<?php
|
|
|
|
namespace Illuminate\Support;
|
|
|
|
use Carbon\Carbon as BaseCarbon;
|
|
use Carbon\CarbonImmutable as BaseCarbonImmutable;
|
|
|
|
class Carbon extends BaseCarbon
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function setTestNow($testNow = null)
|
|
{
|
|
BaseCarbon::setTestNow($testNow);
|
|
BaseCarbonImmutable::setTestNow($testNow);
|
|
}
|
|
}
|