1<?php
2
3namespace DeepCopy\TypeFilter;
4
5interface TypeFilter
6{
7    /**
8     * Applies the filter to the object.
9     *
10     * @param mixed $element
11     */
12    public function apply($element);
13}
14