mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-27 06:49:11 +02:00
13 lines
222 B
Plaintext
13 lines
222 B
Plaintext
@startuml
|
|
|
|
class Sql {
|
|
#$fields : array
|
|
#$from : array
|
|
#$where : array
|
|
+select(array $fields = array())
|
|
+from($table : string, $alias : string)
|
|
+where($condition : string)
|
|
+getQuery()
|
|
}
|
|
|
|
@enduml |