19 lines
310 B
PHP
19 lines
310 B
PHP
<?php
|
|
|
|
namespace App\Twig\Runtime;
|
|
|
|
use Twig\Extension\RuntimeExtensionInterface;
|
|
|
|
class TruncateExtensionRuntime implements RuntimeExtensionInterface
|
|
{
|
|
public function __construct()
|
|
{
|
|
// Inject dependencies if needed
|
|
}
|
|
|
|
public function doSomething($value)
|
|
{
|
|
// ...
|
|
}
|
|
}
|