File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 88
99abstract class DataProvider
1010{
11- protected mixed $ activeData ;
11+ protected \ mixed $ activeData ;
1212
13- public function __construct (mixed $ activeData )
13+ public function __construct (\ mixed $ activeData )
1414 {
1515 $ this ->setActiveData ($ activeData );
1616 }
@@ -27,7 +27,7 @@ public function getActiveData()
2727 * @param mixed $activeData
2828 * @return DataProvider
2929 */
30- public function setActiveData (mixed $ activeData ): self
30+ public function setActiveData (\ mixed $ activeData ): self
3131 {
3232 $ this ->activeData = $ activeData ;
3333 return $ this ;
Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ public function isCollection(): bool
4545 }
4646
4747
48- public function setActiveData (mixed $ activeData ): self
48+ public function setActiveData (\ mixed $ activeData ): self
4949 {
5050 $ this ->activeData = $ activeData ;
5151 return $ this ;
5252 }
5353
54- public function replaceDataProvider (mixed $ activeData ): self
54+ public function replaceDataProvider (\ mixed $ activeData ): self
5555 {
5656 $ dataProviderClass = get_class ($ this ->dataProvider );
5757 $ this ->dataProvider = new $ dataProviderClass ($ activeData );
You can’t perform that action at this time.
0 commit comments