GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#1)
by
unknown
12:30
created
Tests/Services/DoctrineListenerTest.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
 
26 26
 	/**
27 27
 	 *
28
-	 * @param number $save
28
+	 * @param integer $save
29 29
 	 *        	Number of expected saves
30
-	 * @param number $delete
30
+	 * @param integer $delete
31 31
 	 *        	Number of expected deletions
32 32
 	 */
33 33
 	protected function registerDoctrineListener($save = 0, $delete = 0) {
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
 
51 51
 	/**
52 52
 	 *
53
-	 * @param number $save
53
+	 * @param integer $save
54 54
 	 *        	Number of expected saves
55
-	 * @param number $delete
55
+	 * @param integer $delete
56 56
 	 *        	Number of expected deletions
57 57
 	 */
58 58
 	protected function registerSearchService($save = 0, $delete = 0) {
Please login to merge, or discard this patch.
Model/Document.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,6 +94,7 @@  discard block
 block discarded – undo
94 94
 	 *            The name of the field
95 95
 	 * @param mixed $value
96 96
 	 *            The value of this field
97
+	 * @return void
97 98
 	 */
98 99
 	public function addField(string $fieldName, $value): void;
99 100
 
@@ -122,6 +123,7 @@  discard block
 block discarded – undo
122 123
 	 *            The name of the field
123 124
 	 * @param mixed $value
124 125
 	 *            The additional value of this field
126
+	 * @return void
125 127
 	 */
126 128
 	public function addMultiValueField(string $fieldName, $value): void;
127 129
 
@@ -133,6 +135,7 @@  discard block
 block discarded – undo
133 135
 	 *
134 136
 	 * @param string $clazz
135 137
 	 *            The classname
138
+	 * @return void
136 139
 	 */
137 140
 	public function setEntityClass(string $clazz): void;
138 141
 
@@ -152,6 +155,7 @@  discard block
 block discarded – undo
152 155
 	 *
153 156
 	 * @param mixed $id
154 157
 	 *            The ID of the corresponding entity
158
+	 * @return void
155 159
 	 */
156 160
 	public function setEntityId($id): void;
157 161
 
@@ -168,6 +172,7 @@  discard block
 block discarded – undo
168 172
 	 * hiding some programatically needed complexity from the user
169 173
 	 *
170 174
 	 * @param string $type
175
+	 * @return void
171 176
 	 */
172 177
 	public function setEntityType(string $type): void;
173 178
 
@@ -178,7 +183,6 @@  discard block
 block discarded – undo
178 183
 	 *
179 184
 	 * If no entity type is set, the class will be used instead
180 185
 	 *
181
-	 * @param string $type
182 186
 	 */
183 187
 	public function getEntityType(): string;
184 188
 
@@ -188,6 +192,7 @@  discard block
 block discarded – undo
188 192
 	 * <strong>note:</strong> This may not supported by the underlying implementation
189 193
 	 *
190 194
 	 * @param string $path
195
+	 * @return void
191 196
 	 */
192 197
 	public function setFile(string $path): void;
193 198
 
Please login to merge, or discard this patch.
Model/Query.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 	 *
107 107
 	 * @param string $name
108 108
 	 *            Name of the property to set
109
-	 * @param mixed $value
109
+	 * @param string[] $value
110 110
 	 *            The value of the property
111 111
 	 */
112 112
 	public function __set($name, $value): void {
Please login to merge, or discard this patch.
Model/Result/FacetSet.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,5 +40,8 @@
 block discarded – undo
40 40
 	 */
41 41
 	public function getFacets(): array;
42 42
 
43
+	/**
44
+	 * @return void
45
+	 */
43 46
 	public function addFacetValue(string $key, string $label, $value = null, int $increaseCounterBy = 1) : void;
44 47
 }
45 48
\ No newline at end of file
Please login to merge, or discard this patch.
Tests/AbstractORMTestCase.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	/**
62 62
 	 * Get annotation mapping configuration
63 63
 	 *
64
-	 * @return \Doctrine\ORM\Configuration
64
+	 * @return \PHPUnit\Framework\MockObject\MockObject
65 65
 	 */
66 66
 	protected function getMockAnnotatedConfig() {
67 67
 		// We need to mock every method except the ones which
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	/**
94 94
 	 * Creates default mapping driver
95 95
 	 *
96
-	 * @return \Doctrine\ORM\Mapping\Driver\Driver
96
+	 * @return AnnotationDriver
97 97
 	 */
98 98
 	protected function getMetadataDriverImplementation() {
99 99
 		return new AnnotationDriver($_ENV['annotation_reader'], $this->getPaths());
Please login to merge, or discard this patch.
Tests/Controller/SearchControllerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -77,6 +77,9 @@
 block discarded – undo
77 77
 
78 78
 	}
79 79
 
80
+	/**
81
+	 * @param \StingerSoft\EntitySearchBundle\Services\DummySearchService $searchService
82
+	 */
80 83
 	protected function getSearchController(?SearchService $searchService = null): SearchController {
81 84
 		$searchService = $searchService ?? $this->getDummySearchService();
82 85
 
Please login to merge, or discard this patch.
Services/Mapping/DocumentToEntityMapperInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 	/**
24 24
 	 * Tries to create a document from the given object
25 25
 	 *
26
-	 * @param object $object
27 26
 	 * @return object Returns false if no document could be created
28 27
 	 */
29 28
 	public function getEntity(Document $document): ?object;
Please login to merge, or discard this patch.