Search code examples
phplaravelxmlwriter

laravel xmlwriter not found


I installed XmlWriter with the following commands:

sudo apt-get install php-xml
sudo service apache2 restart

In Laravel 5.4 under App\Helpers I have XMLGenerator.php and the following command:

$writer = new XmlWriter();
$writer->openMemory();
....

I get the error:

FatalErrorException in XMLGenerator.php line 90: Class 'App\Helpers\XmlWriter' not found

I don't understand how can i include the XmlWriter.

Thank you


Solution

  • I believe you want:

    $writer = new XMLWriter();
    

    Caps n' stuff.