From dbb9a70e63263bb4e554afab40bfd3f82bec9d44 Mon Sep 17 00:00:00 2001 From: Eric Braun Date: Wed, 18 Jan 2017 14:40:52 +0100 Subject: [PATCH] fixes coding standards --- src/MySqlEventStore.php | 4 ++-- src/PostgresEventStore.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/MySqlEventStore.php b/src/MySqlEventStore.php index ac74786a..533717cc 100644 --- a/src/MySqlEventStore.php +++ b/src/MySqlEventStore.php @@ -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); @@ -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); diff --git a/src/PostgresEventStore.php b/src/PostgresEventStore.php index f5fd08fd..bb280571 100644 --- a/src/PostgresEventStore.php +++ b/src/PostgresEventStore.php @@ -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); @@ -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);