for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Copyright Andrea Heigl <[email protected]>
*
* Licenses under the MIT-license. For details see the included file LICENSE.md
*/
namespace Org_Heigl\CaptainHook\Hooks\AddTime\Fuzzier;
use DateInterval;
class Exact implements Fuzzier
{
public function fuzzy(DateInterval $interval): DateInterval
return clone $interval;
}