Skip to content

[TASK] Update class diagram to include CSSListItem #1226

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -622,11 +622,14 @@ class Sabberworm\CSS\CSSList\Document#4 (2) {
classDiagram
direction LR

%% Start of the part generated from the PHP code using tasuku43/mermaid-class-diagram
%% Start of the part originally generated from the PHP code using tasuku43/mermaid-class-diagram

class Renderable {
<<interface>>
}
class CSSListItem {
<<interface>>
}
class DeclarationBlock {
}
class RuleSet {
Expand Down Expand Up @@ -715,14 +718,14 @@ classDiagram
}

RuleSet <|-- DeclarationBlock: inheritance
Renderable <|.. RuleSet: realization
Commentable <|.. RuleSet: realization
Renderable <|-- CSSListItem: inheritance
Commentable <|-- CSSListItem: inheritance
CSSListItem <|.. RuleSet: realization
RuleSet <|-- AtRuleSet: inheritance
AtRule <|.. AtRuleSet: realization
Renderable <|.. Selector: realization
Selector <|-- KeyframeSelector: inheritance
Renderable <|-- AtRule: inheritance
Commentable <|-- AtRule: inheritance
CSSListItem <|-- AtRule: inheritance
AtRule <|.. Charset: realization
AtRule <|.. Import: realization
AtRule <|.. CSSNamespace: realization
Expand All @@ -734,8 +737,7 @@ classDiagram
SourceException <|-- UnexpectedTokenException: inheritance
CSSList <|-- CSSBlockList: inheritance
CSSBlockList <|-- Document: inheritance
Renderable <|.. CSSList: realization
Commentable <|.. CSSList: realization
CSSListItem <|.. CSSList: realization
CSSList <|-- KeyFrame: inheritance
AtRule <|.. KeyFrame: realization
CSSBlockList <|-- AtRuleBlockList: inheritance
Expand Down