gmarche/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php

14 lines
194 B
PHP

<?php
namespace DeepCopy\TypeFilter;
interface TypeFilter
{
/**
* Applies the filter to the object.
*
* @param mixed $element
*/
public function apply($element);
}