Completed
Pull Request — master (#17)
by
unknown
07:10
created
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 truncature
105
-	 */
103
+    /**
104
+     * @var bool Type of truncature
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.