2025/10/04

From Woozle Writes Code
< 2025
Revision as of 13:29, 4 October 2025 by Woozle (talk | contribs) (Created page with "{{nav/codeblog}} (Continued from ../03) The problem now: <blockquote> '''PHP Fatal error''': Uncaught Error: Call to undefined method <code>c{{l/ver/clade|p=ferreteria|v=v0.6|Sys\Events\ItWent|CommOp}}::HandleResults()</code> in <code>{{l/ver/clade|p=ferreteria|v=v0.6|Sys/Data/Engine/Ops|MyMar}}.php:126</code> </blockquote> <code>HandleResults()</code> is defined in <code>ca{{l/ver/clade|p=ferreteria|v=v0.6|Sys\Events\ItWent\CommOp|MsgsOp}}</code>, an abstract cla...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Codeblog

Recovered

(Continued from 2025/10/03)

The problem now:

PHP Fatal error: Uncaught Error: Call to undefined method cCommOp::HandleResults() in MyMar.php:126

HandleResults() is defined in caMsgsOp, an abstract class, so the solution is in two parts:

  • Whatever is generating the cCommOp object needs to instead generate a caMsgsOp object.
  • We need to figure out the appropriate caMsgsOp podling class for this case.