Skip to content

Commit b319e8a

Browse files
committed
Adding PHP 8.2 support for HMVC Module
1 parent 0b37c93 commit b319e8a

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ user_guide_src/cilexer/pycilexer.egg-info/*
2929
*.sublime-project
3030
/tests/tests/
3131
/tests/results/
32+
test.php

thirdParty/MX/Controller.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3939
* THE SOFTWARE.
4040
**/
41+
#[AllowDynamicProperties]
4142
class MX_Controller
4243
{
4344
public $autoload = array();

thirdParty/MX/Loader.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3636
* THE SOFTWARE.
3737
**/
38+
#[AllowDynamicProperties]
3839
class MX_Loader extends CI_Loader
3940
{
4041
protected $_module;

thirdParty/MX/Router.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
*
4040
* @property \CI_URI uri
4141
**/
42+
#[AllowDynamicProperties]
4243
class MX_Router extends CI_Router
4344
{
4445
public $module;

0 commit comments

Comments
 (0)