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 dac961d commit e6e9643Copy full SHA for e6e9643
src/AbstractConnection.php
@@ -39,7 +39,7 @@ abstract class AbstractConnection implements IConnection
39
/**
40
* @var string SapRfcConnection ID.
41
*/
42
- protected $id;
+ protected $connectionId;
43
44
45
* Initialize this class with a configuration.
@@ -59,10 +59,10 @@ public function __construct(IConfig $config)
59
60
public function getId()
61
{
62
- if ($this->id === null) {
63
- $this->id = md5(serialize($this->config));
+ if ($this->connectionId === null) {
+ $this->connectionId = md5(serialize($this->config));
64
}
65
- return $this->id;
+ return $this->connectionId;
66
67
68
0 commit comments