mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-13 03:27:45 +02:00
build(app): bootstrap codeigniter4 app using docker-compose
This commit is contained in:
parent
11080d46d1
commit
9070ca2651
87 changed files with 5411 additions and 8 deletions
41
src/app/Config/Exceptions.php
Normal file
41
src/app/Config/Exceptions.php
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
<?php namespace Config;
|
||||
|
||||
/**
|
||||
* Setup how the exception handler works.
|
||||
*
|
||||
* @package Config
|
||||
*/
|
||||
|
||||
class Exceptions
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| LOG EXCEPTIONS?
|
||||
|--------------------------------------------------------------------------
|
||||
| If true, then exceptions will be logged
|
||||
| through Services::Log.
|
||||
|
|
||||
| Default: true
|
||||
*/
|
||||
public $log = true;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| DO NOT LOG STATUS CODES
|
||||
|--------------------------------------------------------------------------
|
||||
| Any status codes here will NOT be logged if logging is turned on.
|
||||
| By default, only 404 (Page Not Found) exceptions are ignored.
|
||||
*/
|
||||
public $ignoreCodes = [ 404 ];
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Views Path
|
||||
|--------------------------------------------------------------------------
|
||||
| This is the path to the directory that contains the 'cli' and 'html'
|
||||
| directories that hold the views used to generate errors.
|
||||
|
|
||||
| Default: APPPATH.'Views/errors'
|
||||
*/
|
||||
public $errorViewPath = APPPATH . 'Views/errors';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue