for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DeepCopy\TypeFilter\Date;
use DateInterval;
use DeepCopy\TypeFilter\TypeFilter;
/**
* @final
*
* @deprecated Will be removed in 2.0. This filter will no longer be necessary in PHP 7.1+.
*/
class DateIntervalFilter implements TypeFilter
{
* {@inheritdoc}
* @param DateInterval $element
* @see http://news.php.net/php.bugs/205076
public function apply($element)
$copy = new DateInterval('P0D');
foreach ($element as $propertyName => $propertyValue) {
$element
object<DateInterval>
$copy->{$propertyName} = $propertyValue;
}
return $copy;