Files
DesignPatternsPHP/Structural/FluentInterface/uml/uml.txt
2014-07-29 11:07:44 -05:00

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