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/Subscription.php 1 location
|
@@ 775-777 (lines=3) @@
|
| 772 |
|
*/ |
| 773 |
|
public function ensureConsistency() |
| 774 |
|
{ |
| 775 |
|
if ($this->aInstance !== null && $this->instance_name !== $this->aInstance->getName()) { |
| 776 |
|
$this->aInstance = null; |
| 777 |
|
} |
| 778 |
|
if ($this->aUser !== null && $this->user_id !== $this->aUser->getId()) { |
| 779 |
|
$this->aUser = null; |
| 780 |
|
} |
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 |
|
/** |