Skip to content

Commit

Permalink
fix typos in namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Aug 27, 2015
1 parent 4aedf93 commit 1060504
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/Database/Query.php
Expand Up @@ -751,7 +751,7 @@ protected function _makeJoin($table, $conditions, $type)
* @param array $types associative array of type names used to bind values to query
* @param bool $overwrite whether to reset conditions with passed list or not
* @see \Cake\Database\Type
* @see \Cake\Database\QueryExpression
* @see \Cake\Database\Expression\QueryExpression
* @return $this
*/
public function where($conditions = null, $types = [], $overwrite = false)
Expand Down Expand Up @@ -957,7 +957,7 @@ public function order($fields, $overwrite = false)
* This method allows you to set complex expressions
* as order conditions unlike order()
*
* @param string|\Cake\Database\QueryExpression $field The field to order on.
* @param string|\Cake\Database\Expression\QueryExpression $field The field to order on.
* @param bool $overwrite Whether or not to reset the order clauses.
* @return $this
*/
Expand All @@ -983,7 +983,7 @@ public function orderAsc($field, $overwrite = false)
* This method allows you to set complex expressions
* as order conditions unlike order()
*
* @param string|\Cake\Database\QueryExpression $field The field to order on.
* @param string|\Cake\Database\Expression\QueryExpression $field The field to order on.
* @param bool $overwrite Whether or not to reset the order clauses.
* @return $this
*/
Expand Down Expand Up @@ -1432,7 +1432,7 @@ public function type()
* if required.
*
* You can optionally pass a single raw SQL string or an array or expressions in
* any format accepted by \Cake\Database\QueryExpression:
* any format accepted by \Cake\Database\Expression\QueryExpression:
*
* ```
*
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type.php
Expand Up @@ -109,7 +109,7 @@ public static function build($name)
* Returns a Type object capable of converting a type identified by $name
*
* @param string $name The type identifier you want to set.
* @param \Cake\Databse\Type $instance The type instance you want to set.
* @param \Cake\Database\Type $instance The type instance you want to set.
* @return void
*/
public static function set($name, Type $instance)
Expand Down

0 comments on commit 1060504

Please sign in to comment.