`CommandTransport`: Fix return type for method `createTransport()`

`Icinga\Module\Monitoring\Command\Transport\CommandTransport::createTransport()` also returns `Icinga\Module\Monitoring\Command\Transport\ApiCommandTransport::class`.
Hence it is added to the method's return type in PHPDoc.
This commit is contained in:
raviks789 2023-08-14 15:23:45 +02:00
parent d7518388d8
commit a68e0595ff
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class CommandTransport implements CommandTransportInterface
*
* @param ConfigObject $config
*
* @return LocalCommandFile|RemoteCommandFile
* @return LocalCommandFile|RemoteCommandFile|ApiCommandTransport
*
* @throws ConfigurationError
*/