initial commit
This commit is contained in:
18
vendor/symfony/maker-bundle/templates/twig/Runtime.tpl.php
vendored
Normal file
18
vendor/symfony/maker-bundle/templates/twig/Runtime.tpl.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?= "<?php\n" ?>
|
||||
|
||||
namespace <?= $namespace; ?>;
|
||||
|
||||
<?= $use_statements ?>
|
||||
|
||||
class <?= $class_name ?> implements RuntimeExtensionInterface
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
// Inject dependencies if needed
|
||||
}
|
||||
|
||||
public function doSomething($value)
|
||||
{
|
||||
// ...
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user