The model base class needs a constructor when running the app with PHP8.0
This commit is contained in:
parent
aca2105302
commit
ea8798d2a6
1 changed files with 7 additions and 1 deletions
|
@ -58,5 +58,11 @@
|
||||||
* @property Timezones $timezones
|
* @property Timezones $timezones
|
||||||
*/
|
*/
|
||||||
class EA_Model extends CI_Model {
|
class EA_Model extends CI_Model {
|
||||||
|
/**
|
||||||
|
* EA_Model constructor.
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
//
|
//
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue