| 123456789101112131415161718 |
- <?php
- declare(strict_types=1);
- namespace TestApp\View;
- use Cake\Core\InstanceConfigTrait;
- use Cake\View\StringTemplateTrait;
- class TestStringTemplate
- {
- use InstanceConfigTrait;
- use StringTemplateTrait;
- /**
- * @var array<string, mixed>
- */
- protected $_defaultConfig = [];
- }
|