An error occurred while loading the file. Please try again.
-
Guillaume Perréal authoredbd67bea6
<?php
/*
* © 2016 IRSTEA
* Guillaume Perréal <guillaume.perreal@irstea.fr>
* Tous droits réservés.
*/
namespace Irstea\PlantUmlBundle\Model\Node\Member;
use Irstea\PlantUmlBundle\Writer\WritableInterface;
/**
*
* @author Guillaume Perréal <guillaume.perreal@irstea.fr>
*/
interface MemberInterface extends WritableInterface
{
const PRIVATE_ = '-';
const PROTECTED_ = '#';
const PUBLIC_ = '+';
const UNKNOWN = '';
}