mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-06 18:31:05 +00:00

- update Component class structure and remove component helper function and ComponentLoader - update residual activitypub naming to fediverse
15 lines
272 B
PHP
15 lines
272 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ViewComponents\Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class ViewComponents extends BaseConfig
|
|
{
|
|
public string $classComponentsPath = 'View/Components';
|
|
|
|
public string $viewFileComponentsPath = 'Views/components';
|
|
}
|