We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de0c28 commit 97c79c5Copy full SHA for 97c79c5
config/app.php
@@ -2,7 +2,8 @@
2
3
declare(strict_types=1);
4
5
-use DoWStarterTheme\Common\View\Finder\ViewFinderProvider;
+// phpcs:disable SlevomatCodingStandard.Namespaces.UseFromSameNamespace.UseFromSameNamespace
6
+
7
use DoWStarterTheme\Common\{
8
Customizer,
9
Helpers,
@@ -11,15 +12,18 @@
11
12
Managers as CommonManagers,
13
Menu,
14
Shortcodes,
15
+ View,
16
Widget,
17
WordPress,
18
};
-use DoWStarterTheme\Features\BlockSpacing;
-use DoWStarterTheme\Features\ReusableContent;
19
+use DoWStarterTheme\Features\{
20
+ BlockSpacing,
21
+ ReusableContent,
22
+};
23
24
return [
25
'providers' => [
- ViewFinderProvider::class,
26
+ View\Finder\ViewFinderProvider::class,
27
],
28
29
'components' => [
0 commit comments