mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 10:46:43 +02:00
feat(ui): create ViewComponents library to enable building class and view files components
- replace some helper components and forms with class components in the ui - create viewcomponents service and load the component function to be used in views
This commit is contained in:
parent
fcecbe1c68
commit
94872f2338
41 changed files with 1326 additions and 695 deletions
|
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace ViewComponents\Exceptions;
|
||||
|
||||
use CodeIgniter\Exceptions\ExceptionInterface;
|
||||
use RuntimeException;
|
||||
|
||||
class ComponentNotFoundException extends RuntimeException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue