We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f85749 commit 062bda2Copy full SHA for 062bda2
src/ClassDiagram/Concept/Concept.php
@@ -84,6 +84,21 @@ public function getId(): string
84
return $this->identifier;
85
}
86
87
+ public function addAttribute(Attribute $attribute): void
88
+ {
89
+ $this->attributes[] = $attribute;
90
+ }
91
+
92
+ public function addMethod(Method $method): void
93
94
+ $this->methods[] = $method;
95
96
97
+ public function setAnnotation(string $annotation): void
98
99
+ $this->annotation = $annotation;
100
101
102
public static function isSafeMode(): bool
103
{
104
return self::$safeMode;
0 commit comments