-
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.
put root name into constructor update composer switch security lib change translator namespace use AbstractExtension update role update composer getMaster to getMainRequest update composer to 6.0
- Loading branch information
1 parent
41d0e5e
commit efe19fb
Showing
9 changed files
with
24 additions
and
22 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; | ||
|