Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
lib
unicaen
auth
Commits
953a7fc8
Commit
953a7fc8
authored
Nov 30, 2021
by
Laurent Lécluse
Browse files
utilisation de Psr à la place de Interop, devenu Deprecated
Merge depuis le MASTER
parent
46d117e6
Pipeline
#11639
passed with stage
in 35 seconds
Changes
57
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/UnicaenAuth/Assertion/AssertionFactory.php
View file @
953a7fc8
...
...
@@ -3,7 +3,7 @@
namespace
UnicaenAuth\Assertion
;
use
BjyAuthorize\Service\Authorize
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
Laminas\Authentication\AuthenticationService
;
use
Laminas\Mvc\Application
;
use
Laminas\ServiceManager\Factory\FactoryInterface
;
...
...
src/UnicaenAuth/Authentication/Adapter/AdapterChainServiceFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Adapter
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
ZfcUser\Authentication\Adapter\Exception\OptionsNotFoundException
;
use
ZfcUser\Options\ModuleOptions
;
...
...
src/UnicaenAuth/Authentication/Adapter/CasAdapterFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Adapter
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenApp\Mapper\Ldap\People
as
LdapPeopleMapper
;
use
UnicaenAuth\Options\ModuleOptions
;
use
UnicaenAuth\Service\User
;
...
...
src/UnicaenAuth/Authentication/Adapter/DbAdapterFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Adapter
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Options\ModuleOptions
;
use
Laminas\Authentication\Storage\Session
;
use
ZfcUser\Mapper\UserInterface
as
UserMapperInterface
;
...
...
src/UnicaenAuth/Authentication/Adapter/LdapAdapterFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Adapter
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenApp\Mapper\Ldap\People
as
LdapPeopleMapper
;
use
UnicaenAuth\Options\ModuleOptions
;
use
UnicaenAuth\Service\User
;
...
...
src/UnicaenAuth/Authentication/Adapter/LocalAdapterFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Adapter
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Options\ModuleOptions
;
use
Laminas\Authentication\Storage\Session
;
use
Laminas\EventManager\EventManager
;
...
...
src/UnicaenAuth/Authentication/Adapter/ShibAdapterFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Adapter
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Options\ModuleOptions
;
use
UnicaenAuth\Service\ShibService
;
use
UnicaenAuth\Service\User
;
...
...
src/UnicaenAuth/Authentication/AuthenticationServiceFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
Laminas\Authentication\AuthenticationService
;
use
Laminas\ServiceManager\FactoryInterface
;
use
Laminas\ServiceManager\ServiceLocatorInterface
;
...
...
src/UnicaenAuth/Authentication/RedirectCallbackFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
Laminas\Mvc\Application
;
use
Laminas\Router\RouteInterface
;
use
Laminas\ServiceManager\FactoryInterface
;
...
...
src/UnicaenAuth/Authentication/Storage/AuthFactory.php
View file @
953a7fc8
...
...
@@ -2,8 +2,7 @@
namespace
UnicaenAuth\Authentication\Storage
;
use
Interop\Container\ContainerInterface
;
use
Laminas\Authentication\Storage\Session
;
use
Psr\Container\ContainerInterface
;
use
Laminas\Authentication\Storage\Session
;
use
Laminas\Session\Exception\RuntimeException
;
use
Laminas\Session\SessionManager
;
...
...
src/UnicaenAuth/Authentication/Storage/ChainServiceFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Storage
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Event\EventManager
;
use
UnicaenAuth\Options\ModuleOptions
;
...
...
src/UnicaenAuth/Authentication/Storage/DbFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Storage
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Authentication\Adapter\Db
as
DbAdapter
;
use
UnicaenAuth\Options\ModuleOptions
;
use
Laminas\Authentication\Storage\Session
;
...
...
src/UnicaenAuth/Authentication/Storage/LdapFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Storage
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenApp\Mapper\Ldap\People
as
LdapPeopleMapper
;
use
UnicaenAuth\Authentication\Adapter\Ldap
as
LdapAdapter
;
use
UnicaenAuth\Options\ModuleOptions
;
...
...
src/UnicaenAuth/Authentication/Storage/ShibFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Storage
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Options\ModuleOptions
;
use
UnicaenAuth\Service\ShibService
;
use
Laminas\Authentication\Storage\Session
;
...
...
src/UnicaenAuth/Authentication/Storage/UsurpationFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Authentication\Storage
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Options\ModuleOptions
;
use
Laminas\Authentication\Storage\Session
;
use
Laminas\Session\SessionManager
;
...
...
src/UnicaenAuth/Controller/AuthControllerFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Controller
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Form\LoginForm
;
use
UnicaenAuth\Options\ModuleOptions
;
use
UnicaenAuth\Service\ShibService
;
...
...
src/UnicaenAuth/Controller/DroitsControllerFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Controller
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenAuth\Form\Droits\RoleForm
;
use
UnicaenAuth\Service\PrivilegeService
;
use
UnicaenAuth\Service\RoleService
;
...
...
src/UnicaenAuth/Controller/UtilisateurControllerFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Controller
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
UnicaenApp\Mapper\Ldap\People
as
LdapPeopleMapper
;
use
UnicaenAuth\Options\ModuleOptions
;
use
UnicaenAuth\Service\ShibService
;
...
...
src/UnicaenAuth/Event/EventManagerFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Event
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
/**
* Description of EventManagerFactory
...
...
src/UnicaenAuth/Form/CasLoginFormFactory.php
View file @
953a7fc8
...
...
@@ -2,7 +2,7 @@
namespace
UnicaenAuth\Form
;
use
Interop
\Container\ContainerInterface
;
use
Psr
\Container\ContainerInterface
;
use
Laminas\ServiceManager\Factory\FactoryInterface
;
class
CasLoginFormFactory
implements
FactoryInterface
...
...
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment