An error occurred while loading the file. Please try again.
-
Raidelet Nicolas authored7b889ef8
<?php declare(strict_types=1);
/*
* Copyright (C) 2016-2017 IRSTEA
* All rights reserved.
*/
namespace Irstea\PlantUmlBundle\Model;
use ReflectionClass;
interface ClassFilterInterface extends ToConfigInterface
{
/**
* @param ReflectionClass $class
*
* @return bool
*/
public function accept(ReflectionClass $class);
}