| 123456789101112131415161718192021222324252627 |
- <?php
- declare(strict_types=1);
- namespace TestApp\Controller\Component;
- use Cake\Controller\Component;
- class BlueberryComponent extends Component
- {
- /**
- * testName property
- *
- * @var string|null
- */
- public $testName;
- /**
- * initialize method
- *
- * @param array $config
- * @return void
- */
- public function initialize(array $config): void
- {
- $this->testName = 'BlueberryComponent';
- }
- }
|