Commit a6a2b673 authored by Guillaume Perréal's avatar Guillaume Perréal Committed by Guillaume Perréal
Browse files

Suppression de warnings PHPMD pour les noms de classes correspondant à des mots-clefs.

No related merge requests found
Showing with 8 additions and 5 deletions
+8 -5
...@@ -50,11 +50,6 @@ class BaseArrow implements ArrowInterface ...@@ -50,11 +50,6 @@ class BaseArrow implements ArrowInterface
*/ */
private $targetCardinality; private $targetCardinality;
/**
* @var int
*/
private static $splitCount = 0;
public function __construct( public function __construct(
NodeInterface $source, NodeInterface $source,
NodeInterface $target, NodeInterface $target,
......
...@@ -11,6 +11,8 @@ use Irstea\PlantUmlBundle\Writer\WriterInterface; ...@@ -11,6 +11,8 @@ use Irstea\PlantUmlBundle\Writer\WriterInterface;
/** /**
* Description of Namespace. * Description of Namespace.
*
* @SuppressWarnings("PHPMD.CamelCaseClassName")
*/ */
class Namespace_ extends AbstractNamespace class Namespace_ extends AbstractNamespace
{ {
......
...@@ -10,6 +10,8 @@ use Irstea\PlantUmlBundle\Model\NamespaceInterface; ...@@ -10,6 +10,8 @@ use Irstea\PlantUmlBundle\Model\NamespaceInterface;
/** /**
* Description of Class_. * Description of Class_.
*
* @SuppressWarnings("PHPMD.CamelCaseClassName")
*/ */
class Class_ extends BaseNode class Class_ extends BaseNode
{ {
......
...@@ -10,6 +10,8 @@ use Irstea\PlantUmlBundle\Model\NamespaceInterface; ...@@ -10,6 +10,8 @@ use Irstea\PlantUmlBundle\Model\NamespaceInterface;
/** /**
* Description of Interface_. * Description of Interface_.
*
* @SuppressWarnings("PHPMD.CamelCaseClassName")
*/ */
class Interface_ extends BaseNode class Interface_ extends BaseNode
{ {
......
...@@ -10,6 +10,8 @@ use Irstea\PlantUmlBundle\Model\NamespaceInterface; ...@@ -10,6 +10,8 @@ use Irstea\PlantUmlBundle\Model\NamespaceInterface;
/** /**
* Description of Trait_. * Description of Trait_.
*
* @SuppressWarnings("PHPMD.CamelCaseClassName")
*/ */
class Trait_ extends BaseNode class Trait_ extends BaseNode
{ {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment