Skip to content

Commit

Permalink
Fix code style errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Walther Lalk committed Aug 13, 2014
1 parent 1acb8db commit b39e57e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Database/Expression/CaseExpression.php
Expand Up @@ -101,8 +101,9 @@ public function add($conditions = [], $values = [], $types = []) {
* Iterates over the passed in conditions and ensures that there is a matching true value for each.
* If no matching true value, then it is defaulted to '1'.
*
* @param array|ExpressionInterface $conditions Must be a QueryExpression, or an array of QueryExpressions.
* @param string|array|ExpressionInterface $trueValues Values of each condition if that condition is true
* @param array|ExpressionInterface $conditions Must be a ExpressionInterface instance, or an array of ExpressionInterface instances.
* @param array|ExpressionInterface $values associtative array of values of each condition
* @param array $types associative array of types to be associated with the values
*
* @return void
*/
Expand Down Expand Up @@ -138,8 +139,8 @@ protected function _addExpressions($conditions, $values, $types) {
/**
* Sets the default value
*
* @param $value Value to set
* @param $type Type of value
* @param string|ExpressionInterface|array $value Value to set
* @param string $type Type of value
*
* @return void
*/
Expand Down

0 comments on commit b39e57e

Please sign in to comment.