Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit afb2a60

Browse files
committed
fix codeing style
1 parent fc43e62 commit afb2a60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Server/Application.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected function loadApplication()
8686
*/
8787
public function getApplication()
8888
{
89-
if (!$this->application instanceof Container) {
89+
if (! $this->application instanceof Container) {
9090
$this->application = $this->loadApplication();
9191
}
9292

@@ -98,7 +98,7 @@ public function getApplication()
9898
*/
9999
public function getKernel()
100100
{
101-
if (!$this->kernel instanceof Kernel) {
101+
if (! $this->kernel instanceof Kernel) {
102102
$this->kernel = $this->getApplication()->make(Kernel::class);
103103
}
104104

@@ -175,7 +175,7 @@ protected function setFramework($framework)
175175
{
176176
$framework = strtolower($framework);
177177

178-
if (!in_array($framework, ['laravel', 'lumen'])) {
178+
if (! in_array($framework, ['laravel', 'lumen'])) {
179179
throw new \Exception(sprintf('Not support framework "%s".', $this->framework));
180180
}
181181

0 commit comments

Comments
 (0)