Completed
Pull Request — development (#748)
by Thomas
05:36
created
htdocs/src/Oc/GeoCache/Persistence/GeoCache/GeoCacheRepository.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -73,9 +73,9 @@  discard block
 block discarded – undo
73 73
     public function fetchOneBy(array $where = []): ?GeoCacheEntity
74 74
     {
75 75
         $queryBuilder = $this->connection->createQueryBuilder()
76
-             ->select('*')
77
-             ->from(self::TABLE)
78
-             ->setMaxResults(1);
76
+                ->select('*')
77
+                ->from(self::TABLE)
78
+                ->setMaxResults(1);
79 79
 
80 80
         if (count($where) > 0) {
81 81
             foreach ($where as $column => $value) {
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
     public function fetchBy(array $where = [])
106 106
     {
107 107
         $queryBuilder = $this->connection->createQueryBuilder()
108
-             ->select('*')
109
-             ->from(self::TABLE);
108
+                ->select('*')
109
+                ->from(self::TABLE);
110 110
 
111 111
         if (count($where) > 0) {
112 112
             foreach ($where as $column => $value) {
Please login to merge, or discard this patch.