maybe fixed constructor references

This commit is contained in:
Andreas 2019-09-19 13:46:01 +02:00
parent 15923a5ad1
commit 55abeab437
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?php <?php
class TA_CreateDB extends TestAction{ class TA_CreateDB extends TestAction{
function TA_CreateDB(){ function TA_CreateDB(){
parent(); parent.__construct();
} }
function execute(){ function execute(){
try{ try{

View File

@ -1,7 +1,7 @@
<?php <?php
class TA_PopulateDB extends TestAction{ class TA_PopulateDB extends TestAction{
function TA_PopulateDB(){ function TA_PopulateDB(){
parent(); parent.__construct();
} }
function execute(){ function execute(){
try{ try{