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\Writer\WritableNodeInterface;
/**
* Description of ExtendsClass
*
* @author Guillaume Perréal <guillaume.perreal@irstea.fr>
*/
class ExtendsClass extends BaseArrow
{
public function __construct(WritableNodeInterface $source, WritableNodeInterface $target)
{
parent::__construct($target, $source, "<|--");
}
}