-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.puml
34 lines (34 loc) · 913 Bytes
/
example.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@startuml
package PhpParser <<Folder>> {
class Lexer <<root>>
}
package PhpParser <<Folder>> {
interface ErrorHandler
}
package PhpParser <<Folder>> {
class Error
}
stereotype RuntimeException
package PhpParser\ErrorHandler <<Folder>> {
class Throwing
}
package PhpParser <<Folder>> {
class Token
}
package PhpParser\Internal <<Folder>> {
class TokenPolyfill
}
stereotype PhpToken
stereotype TypeError
PhpParser.Lexer --> PhpParser.ErrorHandler
PhpParser.ErrorHandler --> PhpParser.Error
PhpParser.Error --> RuntimeException
PhpParser.Lexer --> PhpParser\ErrorHandler.Throwing
PhpParser\ErrorHandler.Throwing --> PhpParser.ErrorHandler
PhpParser\ErrorHandler.Throwing --> PhpParser.Error
PhpParser.Lexer --> PhpParser.Token
PhpParser.Token --> PhpParser\Internal.TokenPolyfill
PhpParser\Internal.TokenPolyfill --> PhpToken
PhpParser\Internal.TokenPolyfill --> TypeError
PhpParser.Lexer --> PhpParser.Error
@enduml