Skip to content

Commit

Permalink
Test failing
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Mar 16, 2023
1 parent dd2c132 commit 1710cd2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/framework/src/Foundation/HydeKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
* by type-hinting the HydeKernel::class, or use the hyde() function to get the Kernel.
*
* The Kernel instance is constructed in bootstrap.php, and is available globally as $hyde.
* @see \Hyde\Framework\Testing\Feature\HydeKernelTest
*/
class HydeKernel implements SerializableContract
{
Expand Down Expand Up @@ -76,6 +77,8 @@ public function __construct(?string $basePath = null)
$this->filesystem = new Filesystem($this);
$this->hyperlinks = new Hyperlinks($this);

// fix me

$this->registerExtension(HydeCoreExtension::class);
}

Expand Down Expand Up @@ -106,7 +109,7 @@ public function toArray(): array
'features' => $this->features(),
'files' => $this->files(),
'pages' => $this->pages(),
'routes' => $this->routes(),
'routes' => $this->routes(), // fix me too
];
}
}

0 comments on commit 1710cd2

Please sign in to comment.