An error occurred while loading the file. Please try again.
-
Le Roux Erwan authoredb221bea0
<?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);
}