Completed
Push — meaningfulInterfaces ( 00ef73 )
by no
02:51
created
src/DeserializerFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	 *
124 124
 	 * @since 1.4
125 125
 	 *
126
-	 * @return DispatchableDeserializer
126
+	 * @return Deserializer
127 127
 	 */
128 128
 	public function newStatementDeserializer() {
129 129
 		return new StatementDeserializer(
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 	 *
208 208
 	 * @since 1.5
209 209
 	 *
210
-	 * @return Deserializer
210
+	 * @return AliasGroupListDeserializer
211 211
 	 */
212 212
 	public function newAliasGroupListDeserializer() {
213 213
 		return new AliasGroupListDeserializer();
Please login to merge, or discard this patch.
src/SerializerFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 	 *
268 268
 	 * @since 1.6
269 269
 	 *
270
-	 * @return Serializer
270
+	 * @return AliasGroupSerializer
271 271
 	 */
272 272
 	public function newAliasGroupSerializer() {
273 273
 		return new AliasGroupSerializer();
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
 	 *
279 279
 	 * @since 1.5
280 280
 	 *
281
-	 * @return Serializer
281
+	 * @return AliasGroupListSerializer
282 282
 	 */
283 283
 	public function newAliasGroupListSerializer() {
284 284
 		return new AliasGroupListSerializer( $this->newAliasGroupSerializer(), $this->shouldUseObjectsForMaps() );
Please login to merge, or discard this patch.
tests/unit/Deserializers/AliasGroupListDeserializerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class AliasGroupListDeserializerTest extends DeserializerBaseTest {
18 18
 
19 19
 	/**
20
-	 * @return Deserializer
20
+	 * @return AliasGroupListDeserializer
21 21
 	 */
22 22
 	public function buildDeserializer() {
23 23
 		return new AliasGroupListDeserializer();
Please login to merge, or discard this patch.