Improve array docblock NO_CI

This commit is contained in:
Dennis Eichhorn 2020-02-05 15:52:10 +01:00 committed by GitHub
parent 5e0a6a0fd6
commit 067b1856d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@ final class MemCached extends ConnectionAbstract
/** /**
* Constructor. * Constructor.
* *
* @param array $data Cache data * @param array{host:string, port:int} $data Cache data
* *
* @since 1.0.0 * @since 1.0.0
*/ */
@ -55,7 +55,13 @@ final class MemCached extends ConnectionAbstract
} }
/** /**
* {@inheritdoc} * Connect to cache
*
* @param array{host:string, port:int} $data Cache data
*
* @return void
*
* @since 1.0.0
*/ */
public function connect(array $data) : void public function connect(array $data) : void
{ {