You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installed and generated fine but when I attempt to view the resulting index.php I get this error:
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; queryData has a deprecated constructor in /Library/WebServer/Documents/cargo__stylerules/src/app.php on line 13
hello @acorman
the fix from stackoverflow explain that the old way of PHP to handle class constructor was using class name as method.
in admin-generator,replace function queryData() by function __construct() and you obtain the correct way to build the constructor
thank to you, i learned an old deprecated and never used thing from php4 ;)
Installed and generated fine but when I attempt to view the resulting index.php I get this error:
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; queryData has a deprecated constructor in /Library/WebServer/Documents/cargo__stylerules/src/app.php on line 13
Tried this fix described here: http://stackoverflow.com/questions/36339774/php7-constructor-class-name
...but it didn't work.
The text was updated successfully, but these errors were encountered: