Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Matcher.php « Matcher « DeepCopy « src « deep-copy « myclabs « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d67f3cac6e31c40d6a63a281f105a194399e26b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace DeepCopy\Matcher;

interface Matcher
{
    /**
     * @param object $object
     * @param string $property
     *
     * @return boolean
     */
    public function matches($object, $property);
}