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
2019/05/16 15:13:39 [error] 22332#22332: *1517 FastCGI sent in stderr: "PHP message: Declaration of Model\Pathfinder\MapModel::newLog($action = ''): lib\logging\LogInterface should be compatible with Model\AbstractModel::newLog(string $action = ''): lib\logging\LogInterface
I corrected it by commenting out the type declaration in .../main/model/abstractmodel.php
with 500 error:
protected function newLog( string $action = '' ) : Logging\LogInterface{
my workaround:
protected function newLog( /*string*/ $action = '' ) : Logging\LogInterface{
Not sure if that's the intended solution but it did the trick for me :)
Thx,
-Micky
The text was updated successfully, but these errors were encountered:
Log shows something like:
2019/05/16 15:13:39 [error] 22332#22332: *1517 FastCGI sent in stderr: "PHP message: Declaration of Model\Pathfinder\MapModel::newLog($action = ''): lib\logging\LogInterface should be compatible with Model\AbstractModel::newLog(string $action = ''): lib\logging\LogInterface
I corrected it by commenting out the type declaration in .../main/model/abstractmodel.php
with 500 error:
protected function newLog( string $action = '' ) : Logging\LogInterface{
my workaround:
protected function newLog( /*string*/ $action = '' ) : Logging\LogInterface{
Not sure if that's the intended solution but it did the trick for me :)
Thx,
-Micky
The text was updated successfully, but these errors were encountered: