diff --git a/README.md b/README.md
index 81150b8..f408cd8 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,8 @@ Optionally:
 - configured log types can be by default marked as termination,
 - existing logs with configured termination category can be automatically marked
   as termination,
-- existing logs of configured default termination log types can be automatically marked
-  as termination.
+- existing logs of configured default termination log types can be automatically
+  marked as termination.
 
 ## Installation
 
diff --git a/farm_asset_termination.info.yml b/farm_asset_termination.info.yml
index ae71d34..f7e3f42 100644
--- a/farm_asset_termination.info.yml
+++ b/farm_asset_termination.info.yml
@@ -4,5 +4,5 @@ type: module
 package: farmOS Contrib
 core_version_requirement: ^9 || ^10
 dependencies:
-  - farm_log
+  - drupal:farm_log
 configure: farm_asset_termination.settings
diff --git a/farm_asset_termination.install b/farm_asset_termination.install
index 25a3cb5..dccbd56 100644
--- a/farm_asset_termination.install
+++ b/farm_asset_termination.install
@@ -10,7 +10,9 @@ declare(strict_types=1);
 use Drupal\farm_asset_termination\AssetTerminationInterface;
 
 /**
- * If 'Termination' log category exists assign it as category used for termination logs.
+ * If 'Termination' log category exists .
+ *
+ * Then assign it as category used for termination logs.
  */
 function farm_asset_termination_update_9003(): void {
   $terminationCategoryProperties = [
diff --git a/farm_asset_termination.module b/farm_asset_termination.module
index 9534e62..989fba8 100644
--- a/farm_asset_termination.module
+++ b/farm_asset_termination.module
@@ -65,7 +65,9 @@ function farm_asset_termination_entity_base_field_info(EntityTypeInterface $enti
 }
 
 /**
- * By default check 'Is termination' field for log types configured as termination by default.
+ * By default check 'Is termination' field for log types.
+ *
+ * It is configured as termination by default.
  */
 function farm_asset_termination_form_alter(array &$form, FormStateInterface $formState): void {
   $formObject = $formState->getFormObject();
diff --git a/src/AssetTermination.php b/src/AssetTermination.php
index c6582b9..b79c0d4 100644
--- a/src/AssetTermination.php
+++ b/src/AssetTermination.php
@@ -22,11 +22,15 @@ class AssetTermination implements AssetTerminationInterface {
 
   /**
    * The entity type manager.
+   *
+   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
    */
   protected EntityTypeManagerInterface $entityTypeManager;
 
   /**
    * The asset termination settings.
+   *
+   * @var \Drupal\Core\Config\ImmutableConfig
    */
   protected ImmutableConfig $config;
 
diff --git a/src/AssetTerminationInterface.php b/src/AssetTerminationInterface.php
index dc09c55..3ab8845 100644
--- a/src/AssetTerminationInterface.php
+++ b/src/AssetTerminationInterface.php
@@ -27,7 +27,8 @@ interface AssetTerminationInterface {
    * Assign 'Termination' category to given log(s).
    *
    * @param \Drupal\log\Entity\LogInterface[]|\Drupal\log\Entity\LogInterface $logs
-   *   Log entity or array of them that should have assigned 'Termination' log category.
+   *   Log entity or array of them that should have assigned
+   *   'Termination' log category.
    * @param bool $save
    *   Determines if termination category assignment should be immediately saved
    *   to the database. When using it in log entity presave event subscriber
@@ -44,7 +45,8 @@ interface AssetTerminationInterface {
    * Mark given logs as terminating assigned assets.
    *
    * @param \Drupal\log\Entity\LogInterface[]|\Drupal\log\Entity\LogInterface $logs
-   *   Log entity or array of them that should be marked as terminating assigned assets.
+   *   Log entity or array of them that should be marked
+   *   as terminating assigned assets.
    */
   public function markLogsAsTermination(array|LogInterface $logs): array;
 
diff --git a/src/EventSubscriber/LogEventSubscriber.php b/src/EventSubscriber/LogEventSubscriber.php
index 95577c9..a711879 100644
--- a/src/EventSubscriber/LogEventSubscriber.php
+++ b/src/EventSubscriber/LogEventSubscriber.php
@@ -24,6 +24,8 @@ class LogEventSubscriber implements EventSubscriberInterface {
 
   /**
    * The Asset Termination service.
+   *
+   * @var \Drupal\farm_asset_termination\AssetTerminationInterface
    */
   protected AssetTerminationInterface $assetTermination;
 
diff --git a/src/Form/AssetTerminationSettingsForm.php b/src/Form/AssetTerminationSettingsForm.php
index f7be4b8..f8804f8 100644
--- a/src/Form/AssetTerminationSettingsForm.php
+++ b/src/Form/AssetTerminationSettingsForm.php
@@ -18,11 +18,15 @@ class AssetTerminationSettingsForm extends ConfigFormBase {
 
   /**
    * The entity type manager.
+   *
+   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
    */
   protected EntityTypeManagerInterface $entityTypeManager;
 
   /**
    * The asset termination service.
+   *
+   * @var \Drupal\farm_asset_termination\AssetTerminationInterface
    */
   protected AssetTerminationInterface $assetTermination;
 
