diff --git a/README.md b/README.md
index e85e93d..f73f684 100644
--- a/README.md
+++ b/README.md
@@ -1,28 +1,35 @@
 # Scheduled Entity Block (seb)
 
-Scheduled Entity Block module provides you to display content during the scheduled time. Scheduled block allows you to select existing block or entity.
+Scheduled Entity Block module provides you to display content during the
+scheduled time. Scheduled block allows you to select existing block or entity.
 
-Scheduled block with entity, you can select the view mode that the entity will render in. 
+Scheduled block with entity, you can select the view mode that the entity will
+render in. 
 
-Different modes of schedulers available like Start/End date wise, month, week, specific day, etc
+Different modes of schedulers available like Start/End date wise, month, week,
+specific day, etc
 
 
 ## Typical use cases:
 
-* You have a home page region which typically displays banners. For next week only you want to show a banner ad.
+* You have a home page region which typically displays banners. For next week 
+  only you want to show a banner ad.
 
-  * Simply place scheduled_content_display block and select the banner block then select the start and end date/times for it to show.
+  * Simply place scheduled_content_display block and select the banner block
+    then select the start and end date/times for it to show.
 
 * You have a block to display in the sidebar every Wednesday.
 
-  * Place scheduled_content_display block and select the content which you want to display, then select the scheduled field as Day->Wednesday.
+  * Place scheduled_content_display block and select the content which you want
+    to display, then select the scheduled field as Day->Wednesday.
 
 * You have a block to display for a special day.
 
-  * Place scheduled_content_display block and select the content which you want to display, then set start and end time.
+  * Place scheduled_content_display block and select the content which you want
+    to display, then set start and end time.
 
 ## How to install
 You can install seb module through composer.
 
 
-`composer install drupal/seb`
\ No newline at end of file
+`composer install drupal/seb`
diff --git a/seb.info.yml b/seb.info.yml
index 4f15a92..fbd67ae 100644
--- a/seb.info.yml
+++ b/seb.info.yml
@@ -1,4 +1,4 @@
 name: Scheduled Entity Block
 description: seb provides administrators place content entities as blocks with a scheduler configuration.
 type: module
-core_version_requirement: ^8 || ^9 || ^10
\ No newline at end of file
+core_version_requirement: ^8 || ^9 || ^10
diff --git a/src/Plugin/Block/EntityBlock.php b/src/Plugin/Block/EntityBlock.php
index 55ddd32..b0637f1 100644
--- a/src/Plugin/Block/EntityBlock.php
+++ b/src/Plugin/Block/EntityBlock.php
@@ -6,14 +6,14 @@ use Drupal\Component\Render\FormattableMarkup;
 use Drupal\Core\Access\AccessResult;
 use Drupal\Core\Block\BlockBase;
 use Drupal\Core\Cache\Cache;
+use Drupal\Core\Datetime\DrupalDateTime;
 use Drupal\Core\Entity\EntityDisplayRepositoryInterface;
 use Drupal\Core\Entity\EntityTypeManagerInterface;
-use Drupal\Core\Logger\LoggerChannelFactoryInterface;
 use Drupal\Core\Form\FormStateInterface;
+use Drupal\Core\Logger\LoggerChannelFactoryInterface;
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
 use Drupal\Core\Session\AccountInterface;
 use Symfony\Component\DependencyInjection\ContainerInterface;
-use Drupal\Core\Datetime\DrupalDateTime;
 
 /**
  * Scheduled Entity block.
diff --git a/src/Plugin/Derivative/EntityBlock.php b/src/Plugin/Derivative/EntityBlock.php
index 328cb64..23edabe 100644
--- a/src/Plugin/Derivative/EntityBlock.php
+++ b/src/Plugin/Derivative/EntityBlock.php
@@ -80,7 +80,7 @@ class EntityBlock implements ContainerDeriverInterface {
           'admin_label' => $entityDefinition->getLabel(),
           'config_dependencies' => [
             'config' => [
-              // TODO: Add proper config dependencies.
+              // @todo Add proper config dependencies.
             ],
           ],
         ];
