Skip to content

Commit

Permalink
Autofix phpcs issues with phpcbf.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhavelant committed Jan 18, 2019
1 parent fab06ae commit 341e85f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ public function isEmpty() {
$subscription_url = $this->get('subscription_url')->getValue();
$munchkin_id = $this->get('munchkin_id')->getValue();
$form_id = $this->get('form_id')->getValue();
return
!isset($subscription_url) || $subscription_url === '' ||
return !isset($subscription_url) || $subscription_url === '' ||
!isset($munchkin_id) || $munchkin_id === '' ||
!isset($form_id) || $form_id === '';
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ public function isEmpty() {
$subscription_url = $this->get('subscription_url')->getValue();
$poll_class = $this->get('poll_class')->getValue();
$poll_id = $this->get('poll_id')->getValue();
return
!isset($subscription_url) || $subscription_url === '' ||
return !isset($subscription_url) || $subscription_url === '' ||
!isset($poll_class) || $poll_class === '' ||
!isset($poll_id) || $poll_id === '';
}
Expand Down

0 comments on commit 341e85f

Please sign in to comment.