for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the doctrineviz package
*
* Copyright (c) 2017 Pierre Hennequart
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* Feel free to edit as you please, and have fun.
* @author Pierre Hennequart <[email protected]>
*/
declare(strict_types=1);
namespace Janalis\Doctrineviz\Graphviz;
abstract class Element implements ElementInterface
{
/** @var string */
protected $id;
/**
* Get id.
* @return string
public function getId(): ?string
return $this->id;
}
* Set id.
* @param string $id
public function setId(string $id): void
$this->id = $id;