Completed
Pull Request — master (#17)
by
unknown
06:28
created
src/Component/Query/RecordQuery.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,15 +30,15 @@  discard block
 block discarded – undo
30 30
         return $this->query;
31 31
     }
32 32
 
33
-	/**
34
-	 * @param array $query
35
-	 * @return RecordQuery
36
-	 */
37
-	public function setRawQuery($query)
38
-	{
39
-		$this->query = $query;
40
-		return $this;
41
-	}
33
+    /**
34
+     * @param array $query
35
+     * @return RecordQuery
36
+     */
37
+    public function setRawQuery($query)
38
+    {
39
+        $this->query = $query;
40
+        return $this;
41
+    }
42 42
 
43 43
     /**
44 44
      * @return int
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * @param $repository
53
-	 * @param int $pAPINumber API number (e.g. 3)
53
+     * @param int $pAPINumber API number (e.g. 3)
54 54
      * @return \Doctrine\Common\Collections\ArrayCollection
55 55
      */
56 56
     public function execute($repository, $pAPINumber = 1)
Please login to merge, or discard this patch.
src/Component/Query/RecordQueryBuilder.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
      */
101 101
     private $sortType = null;
102 102
 
103
-	/**
104
-	 * @var bool Type of trucature
105
-	 */
103
+    /**
104
+     * @var bool Type of trucature
105
+     */
106 106
     private $truncature = true;
107 107
 
108 108
     /**
@@ -364,17 +364,17 @@  discard block
 block discarded – undo
364 364
         return $this;
365 365
     }
366 366
 
367
-	/**
368
-	 * Set truncature search type
369
-	 *
370
-	 * @param bool $truncature
371
-	 * @return $this
372
-	 */
373
-	public function setTruncature(bool $truncature)
374
-	{
375
-		$this->truncature = $truncature;
376
-		return $this;
377
-	}
367
+    /**
368
+     * Set truncature search type
369
+     *
370
+     * @param bool $truncature
371
+     * @return $this
372
+     */
373
+    public function setTruncature(bool $truncature)
374
+    {
375
+        $this->truncature = $truncature;
376
+        return $this;
377
+    }
378 378
 
379 379
     /**
380 380
      * Adds a field to the list of requested fields.
@@ -525,16 +525,16 @@  discard block
 block discarded – undo
525 525
     }
526 526
 
527 527
 
528
-	/**
529
-	 * @param $query
530
-	 * @return mixed
531
-	 */
528
+    /**
529
+     * @param $query
530
+     * @return mixed
531
+     */
532 532
     private function appendTruncature($query)
533
-	{
534
-		$query['truncation'] = $this->truncature;
533
+    {
534
+        $query['truncation'] = $this->truncature;
535 535
 
536
-		return $query;
537
-	}
536
+        return $query;
537
+    }
538 538
 
539 539
     /**
540 540
      * @param $query
Please login to merge, or discard this patch.