From 42c7e208ccec259da597d703d35a175c42332ba3 Mon Sep 17 00:00:00 2001 From: Paul Rock Date: Tue, 23 Jul 2019 23:50:34 +0300 Subject: [PATCH] tune of returns in client interface --- src/Interfaces/ClientInterface.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Interfaces/ClientInterface.php b/src/Interfaces/ClientInterface.php index c6e4dba..1e03c5e 100644 --- a/src/Interfaces/ClientInterface.php +++ b/src/Interfaces/ClientInterface.php @@ -64,7 +64,6 @@ interface ClientInterface * Send write query to RouterOS (with or without tag) * * @param string|array|\RouterOS\Query $query - * @return \RouterOS\Interfaces\ClientInterface */ - public function write($query): self; + public function write($query); }