Display error: Unknown HTML tag

So, I just started using Phpstorm and I am trying to "fix" my code so that there are no errors in the IDE. I have the following method below and all my xml tags are highlighted with the 'Unknown HTML' tag

What's the best way to fix this?

private function generate_qbxml_CustomerAddRq($requestID=0){
                /** requestID is used when multiple requests are called in order to match the request to the response.
                    requestID should be incremented as they are called. Currently not implimented. **/
                $qbxml  = '';
                $qbxml .= '<?xml version="1.0" encoding="utf-8"?>';
                $qbxml .= '<?qbxml version="2.0"?>';
                $qbxml .= '<QBXML>';
                $qbxml .=   '<QBXMLMsgsRq onError="stopOnError">';
                $qbxml .=       '<CustomerAddRq requestID="'.$requestID.'">';
                $qbxml .=           '<CustomerAdd>';
                $qbxml .=               '<Name>'.$this->Name.'</Name>'; //Name is a mandatory field. Add a check for this.
                /** For all optional values add a check so that xml tags are not sent in request if value is blank**/
                $qbxml .=               '<CompanyName>'.$this->CompanyName.'</CompanyName>';               
                $qbxml .=               '<FirstName>'.$this->FirstName.'</FirstName>';
                $qbxml .=               '<LastName>'.$this->LastName.'</LastName>';
                $qbxml .=               '<BillAddress>';
                $qbxml .=                   '<Addr1>'.$this->BillAddress->get_Addr1().'</Addr1>';
                $qbxml .=                   '<Addr2>'.$this->BillAddress->get_Addr2().'</Addr2>';
                $qbxml .=                   '<City>'.$this->BillAddress->get_City().'</City>';
                $qbxml .=                   '<State>'.$this->BillAddress->get_State().'</State>';
                $qbxml .=                   '<PostalCode>'.$this->BillAddress->get_PostalCode().'</PostalCode>';                                
                $qbxml .=                   '<Country>'.$this->BillAddress->get_Country().'</Country> ';                               
                $qbxml .=               '</BillAddress>';
                $qbxml .=               '<ShipAddress>';
                $qbxml .=                   '<Addr1>'.$this->ShipAddress->get_Addr1().'</Addr1>';
                $qbxml .=                   '<Addr2>'.$this->ShipAddress->get_Addr2().'</Addr2>';
                $qbxml .=                   '<City>'.$this->ShipAddress->get_City().'</City>';
                $qbxml .=                   '<State>'.$this->ShipAddress->get_State().'</State>';
                $qbxml .=                   '<PostalCode>'.$this->ShipAddress->get_PostalCode().'</PostalCode>';                                
                $qbxml .=                   '<Country>'.$this->ShipAddress->get_Country().'</Country> ';                               
                $qbxml .=               '</ShipAddress>';
                $qbxml .=               '<Phone>'.$this->Phone.'</Phone>';
                $qbxml .=               '<AltPhone>'.$this->AltPhone.'</AltPhone> ';
                $qbxml .=               '<Fax>'.$this->Fax.'</Fax> ';
                $qbxml .=               '<Email>'.$this->Email.'</Email> ';
                //$qbxml .=               '<JobDesc>Ob2</JobDesc>';
                $qbxml .=           '</CustomerAdd>';                
                $qbxml .=       '</CustomerAddRq>';
                $qbxml .=   '</QBXMLMsgsRq>';
                $qbxml .= '</QBXML>';

                return $qbxml;
            }

      

+3


source to share


1 answer


Okay, I figured it out myself.

Alt + Enter, then select Add <'tag'> to custom HTML tags.



Similar to how you handle words that appear as typos.

+12


source







All Articles