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