Why are two identical namespaces here~~~~~ in the prestashop folder

Viewed 39

the picture in here

There are two identical namespaces here ~~~~

I can't find the second prestashop folder in the first prestashop folder!!

1 Answers

The Prestashop namespaces do not follow the folder structure. The SessionHandlerInterface is located at src/Core/Session/SessionHandler.php and has the namespace

PrestaShop\PrestaShop\Core\Session

namespace PrestaShop\PrestaShop\Core\Session;

use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\HttpFoundation\Session\Storage\PhpBridgeSessionStorage;

class SessionHandler implements SessionHandlerInterface
{ ... }
Related