Skip to content

Commit

Permalink
hop
Browse files Browse the repository at this point in the history
  • Loading branch information
jokesterfr committed Aug 14, 2024
1 parent 21cfdb4 commit 2f5a628
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ps_accounts.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use PrestaShop\ModuleLibServiceContainer\DependencyInjection\ServiceContainer;

if (!defined('_PS_VERSION_')) {
exit;
}
Expand All @@ -12,7 +14,7 @@ class Ps_accounts extends Module
const VERSION = '0.0.0';

/**
* @var \PrestaShop\ModuleLibServiceContainer\DependencyInjection\ServiceContainer
* @var ServiceContainer
*/
private $serviceContainer;

Expand All @@ -36,7 +38,7 @@ public function __construct()

require_once __DIR__ . '/vendor/autoload.php';

$this->serviceContainer = new \PrestaShop\ModuleLibServiceContainer\DependencyInjection\ServiceContainer(
$this->serviceContainer = new ServiceContainer(
(string) $this->name,
$this->getLocalPath()
);
Expand Down

0 comments on commit 2f5a628

Please sign in to comment.