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