Skip to content

Commit

Permalink
Merge pull request mollie#954 from GytisZum/PIPRES-443/performance-im…
Browse files Browse the repository at this point in the history
…provement

PIPRES-443: performance improvements
  • Loading branch information
GytisZum authored Jul 9, 2024
2 parents ebe09a3 + 0d61764 commit 9724683
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"mollie/mollie-api-php": "v2.65.0",
"segmentio/analytics-php": "^1.5",
"sentry/sentry": "3.17.0",
"league/container": "2.5.0",
"league/container": "3.3.3",
"prestashop/module-lib-service-container": "v2.0",
"webmozart/assert": "^1.11",
"symfony/http-client": "^4.4",
Expand Down
4 changes: 2 additions & 2 deletions src/ServiceProvider/PrestashopContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@

namespace Mollie\ServiceProvider;

use Interop\Container\ContainerInterface as InteropContainerInterface;
use PrestaShop\PrestaShop\Adapter\SymfonyContainer;
use Psr\Container\ContainerInterface as PsrContainerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

if (!defined('_PS_VERSION_')) {
exit;
}

class PrestashopContainer implements InteropContainerInterface
class PrestashopContainer implements PsrContainerInterface
{
/** @var SymfonyContainer|ContainerInterface|null */
private $container;
Expand Down

0 comments on commit 9724683

Please sign in to comment.