mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 10:15:46 +00:00
22 lines
438 B
PHP
22 lines
438 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ViewComponents\Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class ViewComponents extends BaseConfig
|
|
{
|
|
public string $componentsDirectory = 'Components';
|
|
|
|
/**
|
|
* Paths to look into for local components. Will look for the $componentsDirectory inside.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public array $lookupPaths = [];
|
|
|
|
public string $defaultLookupPath = APPPATH . 'Views/';
|
|
}
|