diff --git a/auctioneer.info.yml b/auctioneer.info.yml
index f505b1b..c0874c3 100644
--- a/auctioneer.info.yml
+++ b/auctioneer.info.yml
@@ -7,8 +7,3 @@ dependencies:
   - drupal:system (>=8.8.8)
   - drupal:views
   - entity:entity
-
-# Information added by Drupal.org packaging script on 2022-06-14
-version: '1.0.0'
-project: 'auctioneer'
-datestamp: 1655181130
diff --git a/css/auction.form.css b/css/auction.form.css
index b28fa15..270c7f9 100755
--- a/css/auction.form.css
+++ b/css/auction.form.css
@@ -18,8 +18,8 @@
 
 /* Wide screens */
 @media
-  screen and (min-width: 780px),
-  (orientation: landscape) and (min-device-height: 780px) {
+screen and (min-width: 780px),
+(orientation: landscape) and (min-device-height: 780px) {
 
   .layout-region-auction-main,
   .layout-region-auction-footer {
@@ -72,7 +72,7 @@
  * toolbar width (240px). In this case, 240px + 780px.
  */
 @media
-  screen and (max-width: 1020px) {
+screen and (max-width: 1020px) {
 
   .toolbar-vertical.toolbar-tray-open .layout-region-auction-main,
   .toolbar-vertical.toolbar-tray-open .layout-region-auction-footer,
diff --git a/modules/auctioneer_commerce/auctioneer_commerce.info.yml b/modules/auctioneer_commerce/auctioneer_commerce.info.yml
index 56c6134..8ba8a13 100644
--- a/modules/auctioneer_commerce/auctioneer_commerce.info.yml
+++ b/modules/auctioneer_commerce/auctioneer_commerce.info.yml
@@ -9,8 +9,3 @@ dependencies:
   - commerce:commerce_order (>=2.28)
   - commerce:commerce_price (>=2.28)
   - commerce:commerce_store (>=2.28)
-
-# Information added by Drupal.org packaging script on 2022-06-14
-version: '1.0.0'
-project: 'auctioneer'
-datestamp: 1655181130
diff --git a/modules/auctioneer_commerce/auctioneer_commerce.module b/modules/auctioneer_commerce/auctioneer_commerce.module
index 15d8cf8..d71c9dd 100755
--- a/modules/auctioneer_commerce/auctioneer_commerce.module
+++ b/modules/auctioneer_commerce/auctioneer_commerce.module
@@ -152,7 +152,10 @@ function auctioneer_commerce_form_auction_type_form_alter(&$form, FormStateInter
       ]) &&
       $field_name != 'id'
     ) {
-      $bid_allowed_fields[$field_name] = t('Field name "@field_name" (@field_label)', ['@field_name' => $field_name, '@field_label' => $field_definition->getLabel()]);
+      $bid_allowed_fields[$field_name] = t('Field name "@field_name" (@field_label)', [
+        '@field_name' => $field_name,
+        '@field_label' => $field_definition->getLabel(),
+      ]);
     }
   }
   $form['commerce']['bid_amount_field_name'] = [
diff --git a/modules/auctioneer_commerce/src/AuctionCommerceManagerInterface.php b/modules/auctioneer_commerce/src/AuctionCommerceManagerInterface.php
index 6d76fa0..8893089 100644
--- a/modules/auctioneer_commerce/src/AuctionCommerceManagerInterface.php
+++ b/modules/auctioneer_commerce/src/AuctionCommerceManagerInterface.php
@@ -5,7 +5,7 @@ namespace Drupal\auctioneer_commerce;
 use Drupal\auctioneer\Entity\AuctionTypeInterface;
 
 /**
- * Interface AuctionCommerceManagerInterface.
+ * Provides managing service for auction commerce integration.
  */
 interface AuctionCommerceManagerInterface {
 
diff --git a/modules/auctioneer_datetime_range/auctioneer_datetime_range.info.yml b/modules/auctioneer_datetime_range/auctioneer_datetime_range.info.yml
index 903087e..67b29f7 100644
--- a/modules/auctioneer_datetime_range/auctioneer_datetime_range.info.yml
+++ b/modules/auctioneer_datetime_range/auctioneer_datetime_range.info.yml
@@ -6,8 +6,3 @@ core_version_requirement: ^8.8.8 || ^9
 dependencies:
   - drupal:datetime_range
   - drupal:auctioneer
-
-# Information added by Drupal.org packaging script on 2022-06-14
-version: '1.0.0'
-project: 'auctioneer'
-datestamp: 1655181130
diff --git a/modules/auctioneer_datetime_range/src/Batch/CheckAuctionDatesBatch.php b/modules/auctioneer_datetime_range/src/Batch/CheckAuctionDatesBatch.php
index c420f38..26e8825 100644
--- a/modules/auctioneer_datetime_range/src/Batch/CheckAuctionDatesBatch.php
+++ b/modules/auctioneer_datetime_range/src/Batch/CheckAuctionDatesBatch.php
@@ -5,7 +5,7 @@ namespace Drupal\auctioneer_datetime_range\Batch;
 use Drupal\auctioneer_datetime_range\DatetimeRangeAuctionTypeInterface;
 
 /**
- * Class CheckAuctionDatesBatch.
+ * Provides managing service for auction datetime range.
  */
 class CheckAuctionDatesBatch {
 
diff --git a/modules/auctioneer_datetime_range/src/Plugin/Auctioneer/AuctionType/AuctionTypeDefault.php b/modules/auctioneer_datetime_range/src/Plugin/Auctioneer/AuctionType/AuctionTypeDefault.php
index 31c92d1..8a3046d 100755
--- a/modules/auctioneer_datetime_range/src/Plugin/Auctioneer/AuctionType/AuctionTypeDefault.php
+++ b/modules/auctioneer_datetime_range/src/Plugin/Auctioneer/AuctionType/AuctionTypeDefault.php
@@ -102,11 +102,14 @@ abstract class AuctionTypeDefault extends AuctionType implements DatetimeRangeAu
    * {@inheritdoc}
    */
   public function processBidForm(array &$form, FormStateInterface $form_state) {
-    /* @var \Drupal\auctioneer\Entity\BidInterface $bid */
+    /** @var \Drupal\auctioneer\Entity\BidInterface $bid */
     $bid = $form_state->getFormObject()->getEntity();
-    /* @var \Drupal\auctioneer\Entity\AuctionInterface $auction */
+    /** @var \Drupal\auctioneer\Entity\AuctionInterface $auction */
     $auction = $bid->getAuction();
-    if (!$this->auctionIsInDateRange($auction) && !in_array($auction->getAuctionState(), ['paused', 'closed'])) {
+    if (!$this->auctionIsInDateRange($auction) && !in_array($auction->getAuctionState(), [
+      'paused',
+      'closed',
+    ])) {
       // Don't show form if current date is not into the auction defined range.
       $form['#access'] = FALSE;
     }
@@ -117,9 +120,9 @@ abstract class AuctionTypeDefault extends AuctionType implements DatetimeRangeAu
    * {@inheritdoc}
    */
   public function validateBidForm(array &$form, FormStateInterface $form_state) {
-    /* @var \Drupal\auctioneer\Entity\BidInterface $bid */
+    /** @var \Drupal\auctioneer\Entity\BidInterface $bid */
     $bid = $form_state->getFormObject()->getEntity();
-    /* @var \Drupal\auctioneer\Entity\AuctionInterface $auction */
+    /** @var \Drupal\auctioneer\Entity\AuctionInterface $auction */
     $auction = $bid->getAuction();
     if ($auction) {
       // Just a last stand.
@@ -142,7 +145,10 @@ abstract class AuctionTypeDefault extends AuctionType implements DatetimeRangeAu
     $start_date = $auction_dates->start_date;
     $end_date = $auction_dates->end_date;
     if ($start_date instanceof DrupalDateTime && $end_date instanceof DrupalDateTime) {
-      list($interval_s, $interval_e) = [$start_date->diff($now_date), $now_date->diff($end_date)];
+      [$interval_s, $interval_e] = [
+        $start_date->diff($now_date),
+        $now_date->diff($end_date),
+      ];
       if (($interval_s->invert === 1) || ($interval_e->invert === 1)) {
         return FALSE;
       }
diff --git a/modules/auctioneer_sniper/auctioneer_sniper.info.yml b/modules/auctioneer_sniper/auctioneer_sniper.info.yml
index ea77698..3a9c0cd 100644
--- a/modules/auctioneer_sniper/auctioneer_sniper.info.yml
+++ b/modules/auctioneer_sniper/auctioneer_sniper.info.yml
@@ -6,8 +6,3 @@ core_version_requirement: ^8.8.8 || ^9
 dependencies:
   - drupal:auctioneer
   - drupal:auctioneer_datetime_range
-
-# Information added by Drupal.org packaging script on 2022-06-14
-version: '1.0.0'
-project: 'auctioneer'
-datestamp: 1655181130
diff --git a/modules/auctioneer_sniper/src/AuctionSniperManagerInterface.php b/modules/auctioneer_sniper/src/AuctionSniperManagerInterface.php
index 32e5c3a..b7f77f8 100644
--- a/modules/auctioneer_sniper/src/AuctionSniperManagerInterface.php
+++ b/modules/auctioneer_sniper/src/AuctionSniperManagerInterface.php
@@ -7,7 +7,7 @@ use Drupal\auctioneer\Entity\AuctionInterface;
 use Drupal\auctioneer_datetime_range\DatetimeRangeAuctionTypeManagerInterface;
 
 /**
- * Interface AuctionSniperManagerInterface.
+ * Provides managing service for auction sniper.
  */
 interface AuctionSniperManagerInterface {
 
diff --git a/modules/auctioneer_sniper/src/Event/RequestAuctionLifetimeUpdateEvent.php b/modules/auctioneer_sniper/src/Event/RequestAuctionLifetimeUpdateEvent.php
index 98759b5..d948ff9 100644
--- a/modules/auctioneer_sniper/src/Event/RequestAuctionLifetimeUpdateEvent.php
+++ b/modules/auctioneer_sniper/src/Event/RequestAuctionLifetimeUpdateEvent.php
@@ -22,7 +22,7 @@ class RequestAuctionLifetimeUpdateEvent extends Event {
   /**
    * The updated dates.
    *
-   * @par array
+   * @var array
    */
   protected $requestDates;
 
diff --git a/src/AuctionFieldManagerInterface.php b/src/AuctionFieldManagerInterface.php
index d7fe014..713509d 100644
--- a/src/AuctionFieldManagerInterface.php
+++ b/src/AuctionFieldManagerInterface.php
@@ -5,7 +5,7 @@ namespace Drupal\auctioneer;
 use Drupal\Core\Entity\Display\EntityDisplayInterface;
 
 /**
- * Interface AuctionFieldManagerInterface.
+ * Provides managing service for auction.
  */
 interface AuctionFieldManagerInterface {
 
diff --git a/src/AuctionTypeManager.php b/src/AuctionTypeManager.php
index 42b9476..e88a809 100644
--- a/src/AuctionTypeManager.php
+++ b/src/AuctionTypeManager.php
@@ -242,7 +242,7 @@ class AuctionTypeManager implements AuctionTypeManagerInterface {
    * {@inheritdoc}
    */
   public function validateBidForm(array &$form, FormStateInterface $form_state) {
-    /* @var \Drupal\auctioneer\Entity\BidInterface $bid */
+    /** @var \Drupal\auctioneer\Entity\BidInterface $bid */
     $bid = $form_state->getFormObject()->getEntity();
     // Plugin instance and validation.
     $auction_plugin_id = $bid->getBidType()->getPluginName();
@@ -256,7 +256,7 @@ class AuctionTypeManager implements AuctionTypeManagerInterface {
    * {@inheritdoc}
    */
   public function submitBidForm(array &$form, FormStateInterface $form_state) {
-    /* @var \Drupal\auctioneer\Entity\BidInterface $bid */
+    /** @var \Drupal\auctioneer\Entity\BidInterface $bid */
     $bid = $form_state->getFormObject()->getEntity();
     // Plugin instance and validation.
     $auction_plugin_id = $bid->getBidType()->getPluginName();
diff --git a/src/AuctionTypeManagerInterface.php b/src/AuctionTypeManagerInterface.php
index 14058e6..0d66e14 100644
--- a/src/AuctionTypeManagerInterface.php
+++ b/src/AuctionTypeManagerInterface.php
@@ -13,7 +13,7 @@ use Drupal\auctioneer\Entity\BidTypeInterface;
 use Psr\Log\LoggerInterface;
 
 /**
- * Interface AuctionTypeManagerInterface.
+ * Provides managing service for auction.
  */
 interface AuctionTypeManagerInterface {
 
diff --git a/src/BidBundleAccessControlHandler.php b/src/BidBundleAccessControlHandler.php
index 10fc211..f6b7278 100755
--- a/src/BidBundleAccessControlHandler.php
+++ b/src/BidBundleAccessControlHandler.php
@@ -16,7 +16,7 @@ class BidBundleAccessControlHandler extends BundleEntityAccessControlHandler {
    * {@inheritdoc}
    */
   protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
-    // @TODO: Block deleting if it's marked as winner
+    // @todo Block deleting if it's marked as winner
     if ($operation === 'delete' && FALSE) {
       return AccessResult::forbidden()->addCacheableDependency($entity);
     }
diff --git a/src/BidPermissions.php b/src/BidPermissions.php
index 2378b66..0bf8c42 100644
--- a/src/BidPermissions.php
+++ b/src/BidPermissions.php
@@ -4,7 +4,6 @@ namespace Drupal\auctioneer;
 
 use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
 use Drupal\Core\StringTranslation\StringTranslationTrait;
-use Drupal\auctioneer\AuctionTypeManagerInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
diff --git a/src/Form/AuctionForm.php b/src/Form/AuctionForm.php
index 33783d0..5610139 100755
--- a/src/Form/AuctionForm.php
+++ b/src/Form/AuctionForm.php
@@ -15,7 +15,7 @@ class AuctionForm extends ContentEntityForm {
    */
   public function form(array $form, FormStateInterface $form_state) {
     $form = parent::form($form, $form_state);
-    /* @var \Drupal\auctioneer\Entity\AuctionInterface $auction */
+    /** @var \Drupal\auctioneer\Entity\AuctionInterface $auction */
     $auction = $this->entity;
     $form['#tree'] = TRUE;
     $form['#theme'] = ['auctioneer_auction_form'];
diff --git a/src/Plugin/Field/FieldType/AuctioneerNumber.php b/src/Plugin/Field/FieldType/AuctioneerNumber.php
index 40fa7bb..586a4b4 100755
--- a/src/Plugin/Field/FieldType/AuctioneerNumber.php
+++ b/src/Plugin/Field/FieldType/AuctioneerNumber.php
@@ -91,7 +91,10 @@ class AuctioneerNumber extends FieldItemBase {
         'number' => [
           'Length' => [
             'max' => $max_length,
-            'maxMessage' => t('%field_label: may not be longer than @max digits.', ['%field_label' => $field_label, '@max' => $max_length]),
+            'maxMessage' => t('%field_label: may not be longer than @max digits.', [
+              '%field_label' => $field_label,
+              '@max' => $max_length,
+            ]),
           ],
           'Regex' => [
             'pattern' => $regex_pattern,
