Try using [$this, 'method_string'] in place of 'method_string' for functions like xml_set_element_handler, etc.
As in xml_set_element_handler($this-parser, [$this, 'method'], [$this, 'another_method']);
This is what the note about "callable" means--you need to reference the actual method in a callable way, not just use a string.