diff --git a/www/lib/CoreLibs/Output/Form/TableArrays/EditAccess.php b/www/lib/CoreLibs/Output/Form/TableArrays/EditAccess.php index 84b2bf9a..170046f9 100644 --- a/www/lib/CoreLibs/Output/Form/TableArrays/EditAccess.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/EditAccess.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace CoreLibs\Output\Form\TableArrays; -class EditAccess implements \CoreLibs\Output\Form\TableArraysInterface +class EditAccess implements Interface\TableArraysInterface { /** @var \CoreLibs\Output\Form\Generate */ private $form; diff --git a/www/lib/CoreLibs/Output/Form/TableArrays/EditGroups.php b/www/lib/CoreLibs/Output/Form/TableArrays/EditGroups.php index 14e259e5..e9008101 100644 --- a/www/lib/CoreLibs/Output/Form/TableArrays/EditGroups.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/EditGroups.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace CoreLibs\Output\Form\TableArrays; -class EditGroups implements \CoreLibs\Output\Form\TableArraysInterface +class EditGroups implements Interface\TableArraysInterface { /** @var \CoreLibs\Output\Form\Generate */ private $form; diff --git a/www/lib/CoreLibs/Output/Form/TableArrays/EditLanguages.php b/www/lib/CoreLibs/Output/Form/TableArrays/EditLanguages.php index 38f6d897..b2a3ba9b 100644 --- a/www/lib/CoreLibs/Output/Form/TableArrays/EditLanguages.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/EditLanguages.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace CoreLibs\Output\Form\TableArrays; -class EditLanguages implements \CoreLibs\Output\Form\TableArraysInterface +class EditLanguages implements Interface\TableArraysInterface { /** @var \CoreLibs\Output\Form\Generate */ private $form; diff --git a/www/lib/CoreLibs/Output/Form/TableArrays/EditMenuGroup.php b/www/lib/CoreLibs/Output/Form/TableArrays/EditMenuGroup.php index 967e7258..6c327de7 100644 --- a/www/lib/CoreLibs/Output/Form/TableArrays/EditMenuGroup.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/EditMenuGroup.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace CoreLibs\Output\Form\TableArrays; -class EditMenuGroup implements \CoreLibs\Output\Form\TableArraysInterface +class EditMenuGroup implements Interface\TableArraysInterface { /** @var \CoreLibs\Output\Form\Generate */ private $form; diff --git a/www/lib/CoreLibs/Output/Form/TableArrays/EditPages.php b/www/lib/CoreLibs/Output/Form/TableArrays/EditPages.php index f3cd2af5..a051a504 100644 --- a/www/lib/CoreLibs/Output/Form/TableArrays/EditPages.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/EditPages.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace CoreLibs\Output\Form\TableArrays; -class EditPages implements \CoreLibs\Output\Form\TableArraysInterface +class EditPages implements Interface\TableArraysInterface { /** @var \CoreLibs\Output\Form\Generate */ private $form; diff --git a/www/lib/CoreLibs/Output/Form/TableArrays/EditSchemas.php b/www/lib/CoreLibs/Output/Form/TableArrays/EditSchemas.php index 0ebad6ad..d91e14a1 100644 --- a/www/lib/CoreLibs/Output/Form/TableArrays/EditSchemas.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/EditSchemas.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace CoreLibs\Output\Form\TableArrays; -class EditSchemas implements \CoreLibs\Output\Form\TableArraysInterface +class EditSchemas implements Interface\TableArraysInterface { /** @var \CoreLibs\Output\Form\Generate */ private $form; diff --git a/www/lib/CoreLibs/Output/Form/TableArrays/EditUsers.php b/www/lib/CoreLibs/Output/Form/TableArrays/EditUsers.php index 313c918b..c3e9da2f 100644 --- a/www/lib/CoreLibs/Output/Form/TableArrays/EditUsers.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/EditUsers.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace CoreLibs\Output\Form\TableArrays; -class EditUsers implements \CoreLibs\Output\Form\TableArraysInterface +class EditUsers implements Interface\TableArraysInterface { /** @var \CoreLibs\Output\Form\Generate */ private $form; diff --git a/www/lib/CoreLibs/Output/Form/TableArrays/EditVisibleGroup.php b/www/lib/CoreLibs/Output/Form/TableArrays/EditVisibleGroup.php index 9c82caab..a00c33d8 100644 --- a/www/lib/CoreLibs/Output/Form/TableArrays/EditVisibleGroup.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/EditVisibleGroup.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace CoreLibs\Output\Form\TableArrays; -class EditVisibleGroup implements \CoreLibs\Output\Form\TableArraysInterface +class EditVisibleGroup implements Interface\TableArraysInterface { /** @var \CoreLibs\Output\Form\Generate */ private $form; diff --git a/www/lib/CoreLibs/Output/TableArraysInterface.php b/www/lib/CoreLibs/Output/Form/TableArrays/Interface/TableArraysInterface.php similarity index 79% rename from www/lib/CoreLibs/Output/TableArraysInterface.php rename to www/lib/CoreLibs/Output/Form/TableArrays/Interface/TableArraysInterface.php index c7ea200f..545ebace 100644 --- a/www/lib/CoreLibs/Output/TableArraysInterface.php +++ b/www/lib/CoreLibs/Output/Form/TableArrays/Interface/TableArraysInterface.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace CoreLibs\Output\Form; +namespace CoreLibs\Output\Form\TableArrays\Interface; interface TableArraysInterface {