diff --git a/src/Plugin/RulesExpression/ActionSetExpression.php b/src/Plugin/RulesExpression/ActionSetExpression.php
index 5b401457..a4cb79d9 100644
--- a/src/Plugin/RulesExpression/ActionSetExpression.php
+++ b/src/Plugin/RulesExpression/ActionSetExpression.php
@@ -29,7 +29,7 @@ class ActionSetExpression extends ActionExpressionContainer {
   public function executeWithState(ExecutionStateInterface $state) {
     // Use the iterator to ensure the actions are sorted.
     foreach ($this as $action) {
-      /* @var \Drupal\rules\Engine\ExpressionInterface $action */
+      /** @var \Drupal\rules\Engine\ExpressionInterface $action */
       $action->executeWithState($state);
     }
   }
diff --git a/src/Plugin/RulesExpression/AndExpression.php b/src/Plugin/RulesExpression/AndExpression.php
index 366ecad5..03e6d045 100644
--- a/src/Plugin/RulesExpression/AndExpression.php
+++ b/src/Plugin/RulesExpression/AndExpression.php
@@ -34,7 +34,7 @@ class AndExpression extends ConditionExpressionContainer {
   public function evaluate(ExecutionStateInterface $state) {
     // Use the iterator to ensure the conditions are sorted.
     foreach ($this as $condition) {
-      /* @var \Drupal\rules\Engine\ExpressionInterface $condition */
+      /** @var \Drupal\rules\Engine\ExpressionInterface $condition */
       if (!$condition->executeWithState($state)) {
         $this->rulesDebugLogger->info('%label evaluated to %result.', [
           '%label' => $this->getLabel(),
diff --git a/src/Plugin/RulesExpression/LoopExpression.php b/src/Plugin/RulesExpression/LoopExpression.php
index aa747864..63c7e766 100644
--- a/src/Plugin/RulesExpression/LoopExpression.php
+++ b/src/Plugin/RulesExpression/LoopExpression.php
@@ -44,7 +44,7 @@ class LoopExpression extends ActionExpressionContainer {
       $state->setVariableData($list_item_name, $item);
       // Use the iterator to ensure the conditions are sorted.
       foreach ($this as $action) {
-        /* @var \Drupal\rules\Engine\ExpressionInterface $action */
+        /** @var \Drupal\rules\Engine\ExpressionInterface $action */
         $action->executeWithState($state);
       }
     }
diff --git a/src/Plugin/RulesExpression/OrExpression.php b/src/Plugin/RulesExpression/OrExpression.php
index 0be90968..dd2150bc 100644
--- a/src/Plugin/RulesExpression/OrExpression.php
+++ b/src/Plugin/RulesExpression/OrExpression.php
@@ -21,7 +21,7 @@ class OrExpression extends ConditionExpressionContainer {
   public function evaluate(ExecutionStateInterface $state) {
     // Use the iterator to ensure the conditions are sorted.
     foreach ($this as $condition) {
-      /* @var \Drupal\rules\Engine\ExpressionInterface $condition */
+      /** @var \Drupal\rules\Engine\ExpressionInterface $condition */
       if ($condition->executeWithState($state)) {
         $this->rulesDebugLogger->info('%label evaluated to %result.', [
           '%label' => $this->getLabel(),
diff --git a/tests/src/Unit/Integration/Condition/UserIsBlockedTest.php b/tests/src/Unit/Integration/Condition/UserIsBlockedTest.php
index d391df1e..d26345ff 100644
--- a/tests/src/Unit/Integration/Condition/UserIsBlockedTest.php
+++ b/tests/src/Unit/Integration/Condition/UserIsBlockedTest.php
@@ -48,7 +48,7 @@ class UserIsBlockedTest extends RulesEntityIntegrationTestBase {
     // Set the user context value.
     $this->condition->setContextValue('user', $active_user->reveal());
 
-    $this->assertFalse($this->condition->evaluate());;
+    $this->assertFalse($this->condition->evaluate());
   }
 
 }
