From 885d96dfa12a4a4220544413aaf541e7a79d8044 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20B=C3=A9jean?= <nicolas@bejean.eu> Date: Sat, 9 May 2020 10:31:28 +0200 Subject: [PATCH] =?UTF-8?q?Correction=20de=20l'affichage=20de=20la=20page?= =?UTF-8?q?=20de=20cr=C3=A9ation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Model/CategoryWidget/DataProvider.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Model/CategoryWidget/DataProvider.php b/Model/CategoryWidget/DataProvider.php index 677a748..41f5660 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); } /** -- GitLab