Skip to content

Commit

Permalink
psr
Browse files Browse the repository at this point in the history
  • Loading branch information
nateiler committed Jun 18, 2019
1 parent 4077f93 commit 0ce8774
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/relationships/OrganizationRelationship.php
Expand Up @@ -175,7 +175,7 @@ protected function delta(): array
$association = $association ?: $newAssociation;

// Has anything changed?
if(!$association->getIsNewRecord() && !$this->hasChanged($newAssociation, $association)) {
if (!$association->getIsNewRecord() && !$this->hasChanged($newAssociation, $association)) {
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion src/relationships/OrganizationTypeRelationship.php
Expand Up @@ -138,7 +138,7 @@ protected function delta(): array
$association = $association ?: $newAssociation;

// Has anything changed?
if(!$association->getIsNewRecord() && !$this->hasChanged($newAssociation, $association)) {
if (!$association->getIsNewRecord() && !$this->hasChanged($newAssociation, $association)) {
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion src/relationships/UserRelationship.php
Expand Up @@ -170,7 +170,7 @@ protected function delta(): array
$association = $association ?: $newAssociation;

// Has anything changed?
if(!$association->getIsNewRecord() && !$this->hasChanged($newAssociation, $association)) {
if (!$association->getIsNewRecord() && !$this->hasChanged($newAssociation, $association)) {
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion src/relationships/UserTypeRelationship.php
Expand Up @@ -158,7 +158,7 @@ protected function delta(): array
$association = $association ?: $newAssociation;

// Has anything changed?
if(!$association->getIsNewRecord() && !$this->hasChanged($newAssociation, $association)) {
if (!$association->getIsNewRecord() && !$this->hasChanged($newAssociation, $association)) {
continue;
}

Expand Down

0 comments on commit 0ce8774

Please sign in to comment.