-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from martinlutter/symfony6
update to support symfony 6
- Loading branch information
Showing
9 changed files
with
25 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,14 @@ | |
use Everlution\Navigation\Builder\MatcherInterface; | ||
use Everlution\NavigationBundle\Bridge\Item\Container\ItemContainerInterface; | ||
use Twig\Environment; | ||
use Twig\Extension\AbstractExtension; | ||
|
||
/** | ||
* Class ItemExtension. | ||
* | ||
* @author Ivan Barlog <[email protected]> | ||
*/ | ||
class ItemExtension extends \Twig_Extension | ||
class ItemExtension extends AbstractExtension | ||
{ | ||
/** @var NavigationHelper */ | ||
private $helper; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,14 @@ | |
|
||
use Everlution\Navigation\Builder\NoCurrentItemFoundException; | ||
use Twig\Environment; | ||
use Twig\Extension\AbstractExtension; | ||
|
||
/** | ||
* Class NavigationExtension. | ||
* | ||
* @author Ivan Barlog <[email protected]> | ||
*/ | ||
class NavigationExtension extends \Twig_Extension | ||
class NavigationExtension extends AbstractExtension | ||
{ | ||
/** @var ItemHelper */ | ||
private $helper; | ||
|