summaryrefslogtreecommitdiff
path: root/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php
blob: 5785a7da9ecd523bd8d79af9e0fce69d1864186b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace DeepCopy\TypeFilter;

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