Completed
Pull Request — master (#16)
by Adam
10:50
created
src/BestServedCold/LaravelZendSearch/Lucene/Store/Delete.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      * Delete
33 33
      *
34 34
      * @param  Index          $index
35
-     * @param  $id
35
+     * @param  integer $id
36 36
      * @param  string|boolean $uid
37 37
      * @return $this
38 38
      */
Please login to merge, or discard this patch.
src/BestServedCold/LaravelZendSearch/Lucene/Store/Insert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     public function insert(Index $index, $id, array $fields, $uid = false, array $boostFields = [])
52 52
     {
53
-        $this->document->addField($this->field('xref_id', (int)$id));
53
+        $this->document->addField($this->field('xref_id', (int) $id));
54 54
         $this->document = $this->addUid($this->document, $uid);
55 55
         $this->document = $this->addFields($this->document, $fields, $boostFields);
56 56
         self::$lastInsert = $this->document;
Please login to merge, or discard this patch.