Failed to fetch fork details. Try again later.
-
unknown authored38968946
Forked from
HYCAR-Hydro / airGR
Source project has a limited visibility.
<?php
/*
* © 2016 IRSTEA
* Guillaume Perréal <guillaume.perreal@irstea.fr>
* Tous droits réservés.
*/
namespace Irstea\PlantUmlBundle\Model\Node;
use Irstea\PlantUmlBundle\Model\NamespaceInterface;
/**
* Description of Interface_
*
* @author Guillaume Perréal <guillaume.perreal@irstea.fr>
*/
class Interface_ extends BaseNode
{
public function __construct(NamespaceInterface $namespace, $name)
{
parent::__construct($namespace, $name, 'interface', [], []);
}
}