mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 07:19:03 +02:00
- update Component class structure and remove component helper function and ComponentLoader - update residual activitypub naming to fediverse
14 lines
272 B
PHP
14 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';
|
|
}
|