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 Irstea\PlantUmlBundle\Writer\WritableInterface;
interface ClassVisitorInterface extends WritableInterface, ToConfigInterface
{
/**
* @param ReflectionClass|string
* @param mixed $classOrName
*
* @return NodeInterface
*/
public function visitClass($classOrName);
}