@@ -289,7 +289,7 @@ |
||
289 | 289 | * order to cache request data. |
290 | 290 | * |
291 | 291 | * @param string $cacheKey |
292 | - * @param int|\DateInterval $ttl |
|
292 | + * @param integer $ttl |
|
293 | 293 | * @param CacheItemPoolInterface|null $pool |
294 | 294 | * |
295 | 295 | * @return RecordIterator |
@@ -94,7 +94,7 @@ |
||
94 | 94 | * |
95 | 95 | * @param string|\MongoId $id Primary key value. |
96 | 96 | * |
97 | - * @return EntityInterface|Record|null |
|
97 | + * @return EntityInterface|null |
|
98 | 98 | */ |
99 | 99 | public function findByPK($id) |
100 | 100 | { |
@@ -83,7 +83,7 @@ |
||
83 | 83 | return null; |
84 | 84 | } |
85 | 85 | |
86 | - return $this->getAlias() . '.' . $primaryKeys[0]; |
|
86 | + return $this->getAlias().'.'.$primaryKeys[0]; |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |