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
$this->canView() line 3361 doesn't seem to be working
In addition, if (empty($row)) line 3377 always returns false even of the object is empty so I suggest to cast it to array in order to validate the test: if (empty((array)$row))
The text was updated successfully, but these errors were encountered:
$this->canView()
line 3361 doesn't seem to be workingIn addition,
if (empty($row))
line 3377 always returns false even of the object is empty so I suggest to cast it toarray
in order to validate the test:if (empty((array)$row))
The text was updated successfully, but these errors were encountered: