Skip to content

Commit

Permalink
fixes coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
oqq committed Jan 18, 2017
1 parent 82a55d8 commit dbb9a70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/MySqlEventStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public function load(
$values[$parameter] = $value;
}

$where[] = "`no` >= :fromNumber";
$where[] = '`no` >= :fromNumber';

$whereCondition = implode(' AND ', $where);
$limit = min($count, $this->loadBatchSize);
Expand Down Expand Up @@ -358,7 +358,7 @@ public function loadReverse(
$values[$parameter] = $value;
}

$where[] = "`no` <= :fromNumber";
$where[] = '`no` <= :fromNumber';

$whereCondition = implode(' AND ', $where);
$limit = min($count, $this->loadBatchSize);
Expand Down
4 changes: 2 additions & 2 deletions src/PostgresEventStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public function load(
$values[$parameter] = $value;
}

$where[] = "no >= :fromNumber";
$where[] = 'no >= :fromNumber';

$whereCondition = implode(' AND ', $where);
$limit = min($count, $this->loadBatchSize);
Expand Down Expand Up @@ -327,7 +327,7 @@ public function loadReverse(
$values[$parameter] = $value;
}

$where[] = "no <= :fromNumber";
$where[] = 'no <= :fromNumber';

$whereCondition = implode(' AND ', $where);
$limit = min($count, $this->loadBatchSize);
Expand Down

0 comments on commit dbb9a70

Please sign in to comment.