Completed
Push — 7.5 ( 5be6c9...557bdf )
by Łukasz
18:34
created
Publish/Core/Search/Legacy/Content/WordIndexer/Repository/SearchIndex.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -127,18 +127,18 @@
 block discarded – undo
127 127
      * Link word with specific content object (legacy db table: ezsearch_object_word_link).
128 128
      *
129 129
      * @param $wordId
130
-     * @param $contentId
131
-     * @param $frequency
132
-     * @param $placement
130
+     * @param integer $contentId
131
+     * @param integer $frequency
132
+     * @param integer $placement
133 133
      * @param $nextWordId
134 134
      * @param $prevWordId
135
-     * @param $contentTypeId
135
+     * @param integer $contentTypeId
136 136
      * @param $fieldTypeId
137
-     * @param $published
138
-     * @param $sectionId
137
+     * @param integer $published
138
+     * @param integer $sectionId
139 139
      * @param $identifier
140 140
      * @param $integerValue
141
-     * @param $languageMask
141
+     * @param integer $languageMask
142 142
      */
143 143
     public function addObjectWordLink($wordId,
144 144
                                       $contentId,
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/SearchServiceTest.php 1 patch
Doc Comments   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1235,7 +1235,7 @@  discard block
 block discarded – undo
1235 1235
     /**
1236 1236
      * Create test Content with ezcountry field having multiple countries selected.
1237 1237
      *
1238
-     * @return \eZ\Publish\API\Repository\Values\Content\Content[]
1238
+     * @return Content
1239 1239
      */
1240 1240
     protected function createMultipleCountriesContent()
1241 1241
     {
@@ -3871,6 +3871,7 @@  discard block
 block discarded – undo
3871 3871
      * Test for the findContent() method.
3872 3872
      *
3873 3873
      * @see \eZ\Publish\API\Repository\SearchService::findContent()
3874
+     * @param string $queryType
3874 3875
      */
3875 3876
     public function testUserMetadataGroupHorizontalFilterContent($queryType = null)
3876 3877
     {
@@ -3960,6 +3961,7 @@  discard block
 block discarded – undo
3960 3961
      * Test for the findLocations() method.
3961 3962
      *
3962 3963
      * @see \eZ\Publish\API\Repository\SearchService::findLocations()
3964
+     * @param string $queryType
3963 3965
      */
3964 3966
     public function testUserMetadataGroupHorizontalFilterLocation($queryType = null)
3965 3967
     {
@@ -4678,7 +4680,7 @@  discard block
 block discarded – undo
4678 4680
      *
4679 4681
      * @param null|callable $closure
4680 4682
      *
4681
-     * @return callable
4683
+     * @return \Closure
4682 4684
      */
4683 4685
     private function getContentInfoFixtureClosure($closure = null)
4684 4686
     {
@@ -4779,7 +4781,7 @@  discard block
 block discarded – undo
4779 4781
     /**
4780 4782
      * @param string $findMethod
4781 4783
      * @param \eZ\Publish\API\Repository\Values\Content\Query $query
4782
-     * @param array $languages
4784
+     * @param string[] $languages
4783 4785
      * @param bool $useAlwaysAvailable
4784 4786
      *
4785 4787
      * @throws \InvalidArgumentException
Please login to merge, or discard this patch.