Skip to content

Commit e6e9643

Browse files
committed
rename connection ID class var
1 parent dac961d commit e6e9643

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AbstractConnection.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ abstract class AbstractConnection implements IConnection
3939
/**
4040
* @var string SapRfcConnection ID.
4141
*/
42-
protected $id;
42+
protected $connectionId;
4343

4444
/**
4545
* Initialize this class with a configuration.
@@ -59,10 +59,10 @@ public function __construct(IConfig $config)
5959
*/
6060
public function getId()
6161
{
62-
if ($this->id === null) {
63-
$this->id = md5(serialize($this->config));
62+
if ($this->connectionId === null) {
63+
$this->connectionId = md5(serialize($this->config));
6464
}
65-
return $this->id;
65+
return $this->connectionId;
6666
}
6767

6868
/**

0 commit comments

Comments
 (0)