diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-10-13 22:19:17 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-10-13 22:19:17 -0400 |
| commit | 9c9ed02cd7ebc5dbbc99bcaed6f80988ce8a9677 (patch) | |
| tree | c58789631d8f729dca8dbbf4108670e567dc25b4 /app/Subscriber/WebhookSubscriber.php | |
| parent | 7bfa38d93c7342fc5dc04722e7bc282f165b8cd4 (diff) | |
Change namespace to add Kanboard as prefix
Diffstat (limited to 'app/Subscriber/WebhookSubscriber.php')
| -rw-r--r-- | app/Subscriber/WebhookSubscriber.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/app/Subscriber/WebhookSubscriber.php b/app/Subscriber/WebhookSubscriber.php index 5176a7ff..8a2bd080 100644 --- a/app/Subscriber/WebhookSubscriber.php +++ b/app/Subscriber/WebhookSubscriber.php @@ -1,17 +1,17 @@ <?php -namespace Subscriber; +namespace Kanboard\Subscriber; -use Event\CommentEvent; -use Event\GenericEvent; -use Event\TaskEvent; -use Model\Comment; -use Model\Task; -use Model\File; -use Model\Subtask; +use Kanboard\Event\CommentEvent; +use Kanboard\Event\GenericEvent; +use Kanboard\Event\TaskEvent; +use Kanboard\Model\Comment; +use Kanboard\Model\Task; +use Kanboard\Model\File; +use Kanboard\Model\Subtask; use Symfony\Component\EventDispatcher\EventSubscriberInterface; -class WebhookSubscriber extends \Core\Base implements EventSubscriberInterface +class WebhookSubscriber extends \Kanboard\Core\Base implements EventSubscriberInterface { public static function getSubscribedEvents() { |
