Skip to content

Commit 8833336

Browse files
committed
Better early bootstrap
1 parent c7bd914 commit 8833336

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/WpStarter/Wordpress/Bootstrap/HasEarlyBootstrapers.php renamed to src/WpStarter/Wordpress/Bootstrap/HasEarlyBootstrappers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace WpStarter\Wordpress\Bootstrap;
44

5-
trait HasEarlyBootstrapers
5+
trait HasEarlyBootstrappers
66
{
77
protected $earlyBootstrappers = [
88
\WpStarter\Foundation\Bootstrap\LoadEnvironmentVariables::class,

src/WpStarter/Wordpress/Console/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
namespace WpStarter\Wordpress\Console;
44

55
use WpStarter\Foundation\Console\Kernel as ConsoleKernel;
6-
use WpStarter\Wordpress\Bootstrap\HasEarlyBootstrapers;
6+
use WpStarter\Wordpress\Bootstrap\HasEarlyBootstrappers;
77

88
class Kernel extends ConsoleKernel
99
{
10-
use HasEarlyBootstrapers;
10+
use HasEarlyBootstrappers;
1111
/**
1212
* The bootstrap classes for the application.
1313
*

src/WpStarter/Wordpress/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
use WpStarter\Routing\Pipeline;
99
use WpStarter\Routing\Router;
1010
use WpStarter\Support\Facades\Facade;
11-
use WpStarter\Wordpress\Bootstrap\HasEarlyBootstrapers;
11+
use WpStarter\Wordpress\Bootstrap\HasEarlyBootstrappers;
1212
use WpStarter\Wordpress\Routing\Router as ShortcodeRouter;
1313

1414
class Kernel extends HttpKernel
1515
{
16-
use HasEarlyBootstrapers;
16+
use HasEarlyBootstrappers;
1717
protected $wpHandleHook=['template_redirect',1];
1818
/**
1919
* @var \WpStarter\Wordpress\Application

0 commit comments

Comments
 (0)