Skip to content

Commit

Permalink
Fix Db service factories to use Psr\Container.
Browse files Browse the repository at this point in the history
  • Loading branch information
EreMaijala committed Aug 29, 2024
1 parent 17f9277 commit e631c7a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@

namespace VuFind\Db\Service;

use Interop\Container\ContainerInterface;
use Interop\Container\Exception\ContainerException;
use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
use Laminas\ServiceManager\Exception\ServiceNotFoundException;
use Laminas\ServiceManager\Factory\FactoryInterface;
use Psr\Container\ContainerExceptionInterface as ContainerException;
use Psr\Container\ContainerInterface;

/**
* Database service factory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@

namespace VuFind\Db\Service;

use Interop\Container\ContainerInterface;
use Interop\Container\Exception\ContainerException;
use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
use Laminas\ServiceManager\Exception\ServiceNotFoundException;
use Psr\Container\ContainerExceptionInterface as ContainerException;
use Psr\Container\ContainerInterface;

/**
* Database access token service factory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@

namespace VuFind\Db\Service;

use Interop\Container\ContainerInterface;
use Interop\Container\Exception\ContainerException;
use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
use Laminas\ServiceManager\Exception\ServiceNotFoundException;
use Psr\Container\ContainerExceptionInterface as ContainerException;
use Psr\Container\ContainerInterface;

/**
* Database resource service factory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@

namespace VuFind\Db\Service;

use Interop\Container\ContainerInterface;
use Interop\Container\Exception\ContainerException;
use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
use Laminas\ServiceManager\Exception\ServiceNotFoundException;
use Psr\Container\ContainerExceptionInterface as ContainerException;
use Psr\Container\ContainerInterface;

/**
* Database usercard service factory
Expand Down
4 changes: 2 additions & 2 deletions module/VuFind/src/VuFind/Db/Service/UserServiceFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@

namespace VuFind\Db\Service;

use Interop\Container\ContainerInterface;
use Interop\Container\Exception\ContainerException;
use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
use Laminas\ServiceManager\Exception\ServiceNotFoundException;
use Psr\Container\ContainerExceptionInterface as ContainerException;
use Psr\Container\ContainerInterface;

/**
* Database user service factory
Expand Down

0 comments on commit e631c7a

Please sign in to comment.