Skip to content

Commit

Permalink
4.5.1
Browse files Browse the repository at this point in the history
- Added basic support for php@8.2
  • Loading branch information
beebmx committed Feb 24, 2023
1 parent 1132f7b commit 5830b7d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"keywords": [
"kirby", "kirby-3", "blade", "view", "template"
],
"version": "4.5.0",
"version": "4.5.1",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
Expand Down
6 changes: 6 additions & 0 deletions src/KirbyBlade/Blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@

class Blade extends BladeProvider
{
protected $container;

private $factory;

private $compiler;

public function __construct($viewPaths, string $cachePath, ContainerInterface $container = null)
{
$this->container = $container ?: new Container;
Expand Down

0 comments on commit 5830b7d

Please sign in to comment.