diff --git a/Model/CategoryWidget/DataProvider.php b/Model/CategoryWidget/DataProvider.php
index 677a748c349f36d4b11d84a083629af15245c8cf..41f56605c5f2f725e315b12a87cc682327420a39 100755
--- a/Model/CategoryWidget/DataProvider.php
+++ b/Model/CategoryWidget/DataProvider.php
@@ -36,7 +36,7 @@ class DataProvider extends AbstractDataProvider
     /**
      * Constructor
      *
-     * @param string                    $title
+     * @param string                    $name
      * @param string                    $primaryFieldName
      * @param string                    $requestFieldName
      * @param CollectionFactory         $categoryWidgetCollectionFactory
@@ -45,7 +45,7 @@ class DataProvider extends AbstractDataProvider
      * @param array                     $data
      */
     public function __construct(
-        string                          $title,
+        string                          $name,
         string                          $primaryFieldName,
         string                          $requestFieldName,
         CollectionFactory               $categoryWidgetCollectionFactory,
@@ -56,7 +56,7 @@ class DataProvider extends AbstractDataProvider
         $this->collection               = $categoryWidgetCollectionFactory->create();
         $this->dataPersistor            = $dataPersistor;
 
-        parent::__construct($title, $primaryFieldName, $requestFieldName, $meta, $data);
+        parent::__construct($name, $primaryFieldName, $requestFieldName, $meta, $data);
     }
 
     /**