View file vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php

File size: 194B
<?php

namespace DeepCopy\TypeFilter;

interface TypeFilter
{
    /**
     * Applies the filter to the object.
     *
     * @param mixed $element
     */
    public function apply($element);
}