An error occurred while loading the file. Please try again.
-
Guillaume Perréal authoredb8bcadb6
<?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\Writer\WritableNodeInterface;
/**
* Description of ImplementsInterface
*
* @author Guillaume Perréal <guillaume.perreal@irstea.fr>
*/
class ImplementsInterface extends BaseArrow
{
public function __construct(WritableNodeInterface $source, Interface_ $target)
{
parent::__construct($target, $source, "<|..");
}
}