| 1 | <?php |
||
| 6 | class Connection extends BaseConnection |
||
| 7 | { |
||
| 8 | protected static $classes; |
||
| 9 | |||
| 10 | public static function RegisterTableToProvide(Model $ModelOfTable){ |
||
| 13 | |||
| 14 | protected $normalizer; |
||
| 15 | /** |
||
| 16 | * Run a select statement and return a single result. |
||
| 17 | * |
||
| 18 | * @param string $query |
||
| 19 | * @param array $bindings |
||
| 20 | * @return mixed |
||
| 21 | */ |
||
| 22 | public function selectOne($query, $bindings = array()) |
||
| 27 | /** |
||
| 28 | * Run a select statement against the database. |
||
| 29 | * |
||
| 30 | * @param string $query |
||
| 31 | * @param array $bindings |
||
| 32 | * @return \Stidges\LaravelDbNormalizer\Collection |
||
| 33 | */ |
||
| 34 | public function select($query, $bindings = array()) |
||
| 39 | } |
||
| 40 | |||
| 47 |
This check looks for method names that are not written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection seeker becomes
databaseConnectionSeeker.