- PHP 8.2 deprecates dynamically declared class properties. Adding these declarations removes deprecation warnings and makes the code PHP 8.3 compatible.
- Add Elvis operator to set search string to an empty string when it's value is null to get rid of an error in the search function call.
- Imported class for OSPOS config
- Replaced private with protected in parent controller's property.
- Removed unneeded TODO
- Refactored local variables
- Replaced ternary notation
- Removed unneeded comments
- Removed unneeded class property
- Removed unneeded @property declarations
- Fixed database version
This commit is contained in:
objecttothis
2023-12-01 17:34:16 +04:00
committed by jekkos
parent 70ee1ed36e
commit 48c04417b8
50 changed files with 527 additions and 674 deletions

View File

@@ -23,9 +23,9 @@ use Config\Services;
class Secure_Controller extends BaseController
{
public array $global_view_data;
public Model $employee;
public Model $module;
public Session $session;
protected Employee $employee;
protected Module $module;
protected Session $session;
public function __construct(string $module_id = '', string $submodule_id = null, string $menu_group = null)
{