An error occurred while loading the file. Please try again.
-
Guillaume Perréal authored
Ça permet de placer les interfaces en haut.
d188bf1d
<?php
/*
* © 2016 IRSTEA
* Guillaume Perréal <guillaume.perreal@irstea.fr>
* Tous droits réservés.
*/
namespace Irstea\PlantUmlBundle\Model\Arrow;
use Irstea\PlantUmlBundle\Model\Node\Interface_;
use Irstea\PlantUmlBundle\Model\UmlNodeInterface;
/**
* Description of ImplementsInterface
*
* @author Guillaume Perréal <guillaume.perreal@irstea.fr>
*/
class ImplementsInterface extends BaseArrow
{
public function __construct(UmlNodeInterface $source, Interface_ $target)
{
parent::__construct($target, $source, "<|..");
}
}