mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 10:15:46 +00:00
17 lines
371 B
PHP
17 lines
371 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ViewComponents\Config;
|
||
|
|
||
|
use CodeIgniter\Config\BaseConfig;
|
||
|
|
||
|
class ViewComponents extends BaseConfig
|
||
|
{
|
||
|
public string $classComponentsNamespace = APP_NAMESPACE . '\View\Components';
|
||
|
|
||
|
public string $classComponentsPath = APPPATH . 'View/Components';
|
||
|
|
||
|
public string $componentsViewPath = APPPATH . 'Views/components';
|
||
|
}
|