Fix incorrect module imports.

When importing modules with use statements, they always require the
fully qualified module name. Iow, there's no need to prefix them with an
extra backslash.

Ref: https://www.php.net/manual/en/language.namespaces.importing.php
This commit is contained in:
Harald Eilertsen
2024-11-09 08:45:45 +01:00
parent 17183cc5dc
commit ac8c80ddbe
11 changed files with 30 additions and 30 deletions

View File

@@ -1,6 +1,6 @@
<?php
use \Michelf\MarkdownExtra;
use Michelf\MarkdownExtra;
use CommerceGuys\Intl\Language\LanguageRepository;
require_once('include/items.php');