| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.3.6
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace TestApp\Controller\Component;
- use Cake\Controller\Component;
- use Cake\Controller\ComponentRegistry;
- /**
- * A test component that makes a copy of the configuration.
- */
- class ConfiguredComponent extends Component
- {
- /**
- * @var array
- */
- public $configCopy;
- /**
- * components property
- *
- * @var array
- */
- protected $components = [];
- /**
- * Constructor
- *
- * @param ComponentRegistry $registry A ComponentRegistry this component can use to lazy load its components
- * @param array $config Array of configuration settings.
- * @param array $components Array of child components.
- */
- public function __construct(ComponentRegistry $registry, array $config, array $components = [])
- {
- $this->components = $components;
- parent::__construct($registry, $config);
- }
- /**
- * @param array $config
- */
- public function initialize(array $config): void
- {
- $this->configCopy = $config;
- parent::initialize($config);
- }
- }
|