summaryrefslogtreecommitdiff
path: root/app/Integration
diff options
context:
space:
mode:
Diffstat (limited to 'app/Integration')
-rw-r--r--app/Integration/BitbucketWebhook.php8
-rw-r--r--app/Integration/GithubWebhook.php8
-rw-r--r--app/Integration/GitlabWebhook.php8
-rw-r--r--app/Integration/HipchatWebhook.php4
-rw-r--r--app/Integration/Jabber.php4
-rw-r--r--app/Integration/Mailgun.php6
-rw-r--r--app/Integration/Postmark.php4
-rw-r--r--app/Integration/Sendgrid.php6
-rw-r--r--app/Integration/SlackWebhook.php4
-rw-r--r--app/Integration/Smtp.php4
10 files changed, 28 insertions, 28 deletions
diff --git a/app/Integration/BitbucketWebhook.php b/app/Integration/BitbucketWebhook.php
index d9dc45b1..b78c4d77 100644
--- a/app/Integration/BitbucketWebhook.php
+++ b/app/Integration/BitbucketWebhook.php
@@ -1,9 +1,9 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
-use Event\GenericEvent;
-use Model\Task;
+use Kanboard\Event\GenericEvent;
+use Kanboard\Model\Task;
/**
* Bitbucket Webhook
@@ -11,7 +11,7 @@ use Model\Task;
* @package integration
* @author Frederic Guillot
*/
-class BitbucketWebhook extends \Core\Base
+class BitbucketWebhook extends \Kanboard\Core\Base
{
/**
* Events
diff --git a/app/Integration/GithubWebhook.php b/app/Integration/GithubWebhook.php
index a725f5b9..c948ea8b 100644
--- a/app/Integration/GithubWebhook.php
+++ b/app/Integration/GithubWebhook.php
@@ -1,9 +1,9 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
-use Event\GenericEvent;
-use Model\Task;
+use Kanboard\Event\GenericEvent;
+use Kanboard\Model\Task;
/**
* Github Webhook
@@ -11,7 +11,7 @@ use Model\Task;
* @package integration
* @author Frederic Guillot
*/
-class GithubWebhook extends \Core\Base
+class GithubWebhook extends \Kanboard\Core\Base
{
/**
* Events
diff --git a/app/Integration/GitlabWebhook.php b/app/Integration/GitlabWebhook.php
index b8925daf..4b90ef7f 100644
--- a/app/Integration/GitlabWebhook.php
+++ b/app/Integration/GitlabWebhook.php
@@ -1,9 +1,9 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
-use Event\GenericEvent;
-use Model\Task;
+use Kanboard\Event\GenericEvent;
+use Kanboard\Model\Task;
/**
* Gitlab Webhook
@@ -11,7 +11,7 @@ use Model\Task;
* @package integration
* @author Frederic Guillot
*/
-class GitlabWebhook extends \Core\Base
+class GitlabWebhook extends \Kanboard\Core\Base
{
/**
* Events
diff --git a/app/Integration/HipchatWebhook.php b/app/Integration/HipchatWebhook.php
index 1d08e514..af1e4495 100644
--- a/app/Integration/HipchatWebhook.php
+++ b/app/Integration/HipchatWebhook.php
@@ -1,6 +1,6 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
/**
* Hipchat webhook
@@ -8,7 +8,7 @@ namespace Integration;
* @package integration
* @author Frederic Guillot
*/
-class HipchatWebhook extends \Core\Base
+class HipchatWebhook extends \Kanboard\Core\Base
{
/**
* Return true if Hipchat is enabled for this project or globally
diff --git a/app/Integration/Jabber.php b/app/Integration/Jabber.php
index eaf1c5a8..9c7dcd40 100644
--- a/app/Integration/Jabber.php
+++ b/app/Integration/Jabber.php
@@ -1,6 +1,6 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
use Exception;
use Fabiang\Xmpp\Options;
@@ -14,7 +14,7 @@ use Fabiang\Xmpp\Protocol\Presence;
* @package integration
* @author Frederic Guillot
*/
-class Jabber extends \Core\Base
+class Jabber extends \Kanboard\Core\Base
{
/**
* Return true if Jabber is enabled for this project or globally
diff --git a/app/Integration/Mailgun.php b/app/Integration/Mailgun.php
index 076c311a..045284d2 100644
--- a/app/Integration/Mailgun.php
+++ b/app/Integration/Mailgun.php
@@ -1,8 +1,8 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
-use Core\Tool;
+use Kanboard\Core\Tool;
/**
* Mailgun Integration
@@ -10,7 +10,7 @@ use Core\Tool;
* @package integration
* @author Frederic Guillot
*/
-class Mailgun extends \Core\Base
+class Mailgun extends \Kanboard\Core\Base
{
/**
* Send a HTML email
diff --git a/app/Integration/Postmark.php b/app/Integration/Postmark.php
index 05bdf58b..b57f92d4 100644
--- a/app/Integration/Postmark.php
+++ b/app/Integration/Postmark.php
@@ -1,6 +1,6 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
/**
* Postmark integration
@@ -8,7 +8,7 @@ namespace Integration;
* @package integration
* @author Frederic Guillot
*/
-class Postmark extends \Core\Base
+class Postmark extends \Kanboard\Core\Base
{
/**
* Send a HTML email
diff --git a/app/Integration/Sendgrid.php b/app/Integration/Sendgrid.php
index fd58342a..2da87119 100644
--- a/app/Integration/Sendgrid.php
+++ b/app/Integration/Sendgrid.php
@@ -1,8 +1,8 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
-use Core\Tool;
+use Kanboard\Core\Tool;
/**
* Sendgrid Integration
@@ -10,7 +10,7 @@ use Core\Tool;
* @package integration
* @author Frederic Guillot
*/
-class Sendgrid extends \Core\Base
+class Sendgrid extends \Kanboard\Core\Base
{
/**
* Send a HTML email
diff --git a/app/Integration/SlackWebhook.php b/app/Integration/SlackWebhook.php
index 71244739..e216ed5b 100644
--- a/app/Integration/SlackWebhook.php
+++ b/app/Integration/SlackWebhook.php
@@ -1,6 +1,6 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
/**
* Slack Webhook
@@ -8,7 +8,7 @@ namespace Integration;
* @package integration
* @author Frederic Guillot
*/
-class SlackWebhook extends \Core\Base
+class SlackWebhook extends \Kanboard\Core\Base
{
/**
* Return true if Slack is enabled for this project or globally
diff --git a/app/Integration/Smtp.php b/app/Integration/Smtp.php
index ad2f30f8..3ef6539d 100644
--- a/app/Integration/Smtp.php
+++ b/app/Integration/Smtp.php
@@ -1,6 +1,6 @@
<?php
-namespace Integration;
+namespace Kanboard\Integration;
use Swift_Message;
use Swift_Mailer;
@@ -15,7 +15,7 @@ use Swift_TransportException;
* @package integration
* @author Frederic Guillot
*/
-class Smtp extends \Core\Base
+class Smtp extends \Kanboard\Core\Base
{
/**
* Send a HTML email