Skip to content

Commit

Permalink
Rewrite File to class import
Browse files Browse the repository at this point in the history
- fixes #22
  • Loading branch information
zoglo committed May 12, 2024
1 parent 21da5ab commit b27adf4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contao/dca/tl_member_settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

declare(strict_types=1);

use Contao\DC_File;

/*
* This file is part of Oveleon ContaoMemberExtension Bundle.
*
Expand All @@ -16,7 +18,7 @@
$GLOBALS['TL_DCA']['tl_member_settings'] = [

'config' => [
'dataContainer' => 'File',
'dataContainer' => DC_File::class,
'closed' => true
],

Expand Down

0 comments on commit b27adf4

Please sign in to comment.