Last active
October 4, 2018 12:51
-
-
Save mnapoli/f7be0cae5e2f7c9f92f2e2cd9ad6fbb0 to your computer and use it in GitHub Desktop.
PHP config using https://wiki.php.net/rfc/named_params
This file contains hidden or 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
<?php | |
// See https://wiki.php.net/rfc/named_params | |
return new TwigConfig( | |
paths => [ | |
'%kernel.project_dir%/vendor/acme/foo-bar/templates' => 'foo_bar', | |
], | |
autoescape => true, | |
strictVariables => false, | |
date => new TwigDateConfig( | |
format => 'd.m.Y, H:i:s', | |
interval_format => '%%d days', | |
), | |
); |
This file contains hidden or 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
twig: | |
paths: | |
'%kernel.project_dir%/vendor/acme/foo-bar/templates': foo_bar | |
autoescape: true | |
strict_variables: false | |
date: | |
format: d.m.Y, H:i:s | |
interval_format: '%%d days' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment