src/cli/Database/Base/Channel.php 1 location
|
@@ 508-510 (lines=3) @@
|
| 505 |
|
*/ |
| 506 |
|
public function ensureConsistency() |
| 507 |
|
{ |
| 508 |
|
if ($this->aInstance !== null && $this->instance_name !== $this->aInstance->getName()) { |
| 509 |
|
$this->aInstance = null; |
| 510 |
|
} |
| 511 |
|
} // ensureConsistency |
| 512 |
|
|
| 513 |
|
/** |
src/cli/Database/Base/Connection.php 1 location
|
@@ 634-636 (lines=3) @@
|
| 631 |
|
*/ |
| 632 |
|
public function ensureConsistency() |
| 633 |
|
{ |
| 634 |
|
if ($this->aInstance !== null && $this->instance_name !== $this->aInstance->getName()) { |
| 635 |
|
$this->aInstance = null; |
| 636 |
|
} |
| 637 |
|
if ($this->aUser !== null && $this->user_id !== $this->aUser->getId()) { |
| 638 |
|
$this->aUser = null; |
| 639 |
|
} |
src/cli/Database/Base/User.php 1 location
|
@@ 523-525 (lines=3) @@
|
| 520 |
|
*/ |
| 521 |
|
public function ensureConsistency() |
| 522 |
|
{ |
| 523 |
|
if ($this->aInstance !== null && $this->instance_name !== $this->aInstance->getName()) { |
| 524 |
|
$this->aInstance = null; |
| 525 |
|
} |
| 526 |
|
} // ensureConsistency |
| 527 |
|
|
| 528 |
|
/** |
src/cli/Database/Base/Input.php 1 location
|
@@ 680-682 (lines=3) @@
|
| 677 |
|
*/ |
| 678 |
|
public function ensureConsistency() |
| 679 |
|
{ |
| 680 |
|
if ($this->aInstance !== null && $this->instance_name !== $this->aInstance->getName()) { |
| 681 |
|
$this->aInstance = null; |
| 682 |
|
} |
| 683 |
|
} // ensureConsistency |
| 684 |
|
|
| 685 |
|
/** |
src/cli/Database/Base/Subscription.php 1 location
|
@@ 826-828 (lines=3) @@
|
| 823 |
|
*/ |
| 824 |
|
public function ensureConsistency() |
| 825 |
|
{ |
| 826 |
|
if ($this->aInstance !== null && $this->instance_name !== $this->aInstance->getName()) { |
| 827 |
|
$this->aInstance = null; |
| 828 |
|
} |
| 829 |
|
if ($this->aInput !== null && $this->input_uuid !== $this->aInput->getUuid()) { |
| 830 |
|
$this->aInput = null; |
| 831 |
|
} |