Passed
Pull Request — development (#682)
by Nick
07:18
created
htdocs/src/Oc/GeoCache/Persistence/GeoCacheLog/GeoCacheLogRepository.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
     public function fetchOneBy(array $where = [])
80 80
     {
81 81
         $queryBuilder = $this->connection->createQueryBuilder()
82
-             ->select('*')
83
-             ->from(self::TABLE)
84
-             ->setMaxResults(1);
82
+                ->select('*')
83
+                ->from(self::TABLE)
84
+                ->setMaxResults(1);
85 85
 
86 86
         if (count($where) > 0) {
87 87
             foreach ($where as $column => $value) {
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
     public function fetchBy(array $where = [])
113 113
     {
114 114
         $queryBuilder = $this->connection->createQueryBuilder()
115
-             ->select('*')
116
-             ->from(self::TABLE);
115
+                ->select('*')
116
+                ->from(self::TABLE);
117 117
 
118 118
         if (count($where) > 0) {
119 119
             foreach ($where as $column => $value) {
Please login to merge, or discard this patch.
htdocs/src/Oc/GeoCache/Persistence/GeoCache/GeoCacheRepository.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -80,9 +80,9 @@  discard block
 block discarded – undo
80 80
     public function fetchOneBy(array $where = [])
81 81
     {
82 82
         $queryBuilder = $this->connection->createQueryBuilder()
83
-             ->select('*')
84
-             ->from(self::TABLE)
85
-             ->setMaxResults(1);
83
+                ->select('*')
84
+                ->from(self::TABLE)
85
+                ->setMaxResults(1);
86 86
 
87 87
         if (count($where) > 0) {
88 88
             foreach ($where as $column => $value) {
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
     public function fetchBy(array $where = [])
114 114
     {
115 115
         $queryBuilder = $this->connection->createQueryBuilder()
116
-             ->select('*')
117
-             ->from(self::TABLE);
116
+                ->select('*')
117
+                ->from(self::TABLE);
118 118
 
119 119
         if (count($where) > 0) {
120 120
             foreach ($where as $column => $value) {
Please login to merge, or discard this patch.