diff options
Diffstat (limited to 'app/Auth')
-rw-r--r-- | app/Auth/Base.php | 4 | ||||
-rw-r--r-- | app/Auth/Database.php | 6 | ||||
-rw-r--r-- | app/Auth/Github.php | 8 | ||||
-rw-r--r-- | app/Auth/Gitlab.php | 8 | ||||
-rw-r--r-- | app/Auth/Google.php | 8 | ||||
-rw-r--r-- | app/Auth/Ldap.php | 4 | ||||
-rw-r--r-- | app/Auth/RememberMe.php | 8 | ||||
-rw-r--r-- | app/Auth/ReverseProxy.php | 4 |
8 files changed, 25 insertions, 25 deletions
diff --git a/app/Auth/Base.php b/app/Auth/Base.php index ebf6681b..a354c200 100644 --- a/app/Auth/Base.php +++ b/app/Auth/Base.php @@ -1,6 +1,6 @@ <?php -namespace Auth; +namespace Kanboard\Auth; use Pimple\Container; @@ -10,7 +10,7 @@ use Pimple\Container; * @package auth * @author Frederic Guillot */ -abstract class Base extends \Core\Base +abstract class Base extends \Kanboard\Core\Base { /** * Database instance diff --git a/app/Auth/Database.php b/app/Auth/Database.php index e69f18a9..36be669e 100644 --- a/app/Auth/Database.php +++ b/app/Auth/Database.php @@ -1,9 +1,9 @@ <?php -namespace Auth; +namespace Kanboard\Auth; -use Model\User; -use Event\AuthEvent; +use Kanboard\Model\User; +use Kanboard\Event\AuthEvent; /** * Database authentication diff --git a/app/Auth/Github.php b/app/Auth/Github.php index 2d1b7b26..28478b56 100644 --- a/app/Auth/Github.php +++ b/app/Auth/Github.php @@ -1,8 +1,8 @@ <?php -namespace Auth; +namespace Kanboard\Auth; -use Event\AuthEvent; +use Kanboard\Event\AuthEvent; /** * Github backend @@ -22,7 +22,7 @@ class Github extends Base * OAuth2 instance * * @access private - * @var \Core\OAuth2 + * @var \Kanboard\Core\OAuth2 */ private $service; @@ -85,7 +85,7 @@ class Github extends Base * Get OAuth2 configured service * * @access public - * @return \Core\OAuth2 + * @return KanboardCore\OAuth2 */ public function getService() { diff --git a/app/Auth/Gitlab.php b/app/Auth/Gitlab.php index d9a985bf..306a474d 100644 --- a/app/Auth/Gitlab.php +++ b/app/Auth/Gitlab.php @@ -1,8 +1,8 @@ <?php -namespace Auth; +namespace Kanboard\Auth; -use Event\AuthEvent; +use Kanboard\Event\AuthEvent; /** * Gitlab backend @@ -22,7 +22,7 @@ class Gitlab extends Base * OAuth2 instance * * @access private - * @var \Core\OAuth2 + * @var \Kanboard\Core\OAuth2 */ private $service; @@ -85,7 +85,7 @@ class Gitlab extends Base * Get OAuth2 configured service * * @access public - * @return \Core\OAuth2 + * @return KanboardCore\OAuth2 */ public function getService() { diff --git a/app/Auth/Google.php b/app/Auth/Google.php index 10ecfe8f..76e65fb6 100644 --- a/app/Auth/Google.php +++ b/app/Auth/Google.php @@ -1,8 +1,8 @@ <?php -namespace Auth; +namespace Kanboard\Auth; -use Event\AuthEvent; +use Kanboard\Event\AuthEvent; /** * Google backend @@ -23,7 +23,7 @@ class Google extends Base * OAuth2 instance * * @access private - * @var \Core\OAuth2 + * @var \Kanboard\Core\OAuth2 */ private $service; @@ -86,7 +86,7 @@ class Google extends Base * Get OAuth2 configured service * * @access public - * @return \Core\OAuth2 + * @return KanboardCore\OAuth2 */ public function getService() { diff --git a/app/Auth/Ldap.php b/app/Auth/Ldap.php index 3a48c402..78820d2e 100644 --- a/app/Auth/Ldap.php +++ b/app/Auth/Ldap.php @@ -1,8 +1,8 @@ <?php -namespace Auth; +namespace Kanboard\Auth; -use Event\AuthEvent; +use Kanboard\Event\AuthEvent; /** * LDAP model diff --git a/app/Auth/RememberMe.php b/app/Auth/RememberMe.php index 54e60422..6569463d 100644 --- a/app/Auth/RememberMe.php +++ b/app/Auth/RememberMe.php @@ -1,10 +1,10 @@ <?php -namespace Auth; +namespace Kanboard\Auth; -use Core\Request; -use Event\AuthEvent; -use Core\Security; +use Kanboard\Core\Request; +use Kanboard\Event\AuthEvent; +use Kanboard\Core\Security; /** * RememberMe model diff --git a/app/Auth/ReverseProxy.php b/app/Auth/ReverseProxy.php index 7818254c..6f998a34 100644 --- a/app/Auth/ReverseProxy.php +++ b/app/Auth/ReverseProxy.php @@ -1,8 +1,8 @@ <?php -namespace Auth; +namespace Kanboard\Auth; -use Event\AuthEvent; +use Kanboard\Event\AuthEvent; /** * ReverseProxy backend |