We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf6b22e commit e3f76daCopy full SHA for e3f76da
src/IConnection.php
@@ -36,6 +36,19 @@ public function __construct(IConfig $config);
36
*/
37
public function getId();
38
39
+ /**
40
+ * Is connection established?
41
+ * @return bool
42
+ */
43
+ public function isConnected();
44
+
45
46
+ * Establish a connection to the configured system.
47
+ * In case the connection is already open, close it first.
48
+ * @throws \phpsap\interfaces\exceptions\IConnectionFailedException
49
50
+ public function connect();
51
52
/**
53
* Send a ping request via an established connection to verify that the
54
* connection works.
0 commit comments