Skip to content

Instantly share code, notes, and snippets.

@platoosom
Created September 28, 2017 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save platoosom/8d90d38a49ba2b254860db4b2b8b9652 to your computer and use it in GitHub Desktop.
Save platoosom/8d90d38a49ba2b254860db4b2b8b9652 to your computer and use it in GitHub Desktop.
<?php
class User {
static public function select($params) {
// Do alot of thing.
return $this;
}
public function join($param1, $param2, $params3, $param4) {
// Do alot of thing.
return $this;
}
public function groupBy($param) {
// Do alot of thing.
return $this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment