Skip to content

Commit

Permalink
[:rotating_light: LINTING] Remove useless condition
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlutzenberger committed May 15, 2022
1 parent 7f29172 commit d178653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GoogleAnalytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function run()
$this->gaId = Yii::$app->params['gaId'];
}

if (!isset($this->gaId) || empty($this->gaId)) {
if (empty($this->gaId)) {
return '';
}

Expand Down

0 comments on commit d178653

Please sign in to comment.