Skip to content

Commit

Permalink
Merge pull request #2047 from LuckyCyborg/4.0
Browse files Browse the repository at this point in the history
[4.0] Improve the Modules
  • Loading branch information
LuckyCyborg authored Mar 23, 2018
2 parents 5aa90ab + 991b3cf commit 4d21efc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Platform/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// Define The Application Version
//--------------------------------------------------------------------------

define('VERSION', '4.0.36');
define('VERSION', '4.0.37');

//--------------------------------------------------------------------------
// Set PHP Error Reporting Options
Expand Down
6 changes: 5 additions & 1 deletion modules/Contacts/Notifications/MessageSubmitted.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Modules\Contacts\Notifications;

use Nova\Bus\QueueableTrait;
use Nova\Queue\ShouldQueueInterface;
use Nova\Support\Arr;
use Nova\Support\Str;

Expand All @@ -12,8 +14,10 @@
use Modules\Contacts\Models\Message;


class MessageSubmitted extends Notification
class MessageSubmitted extends Notification implements ShouldQueueInterface
{
use QueueableTrait;

/**
* @var \Modules\Contacts\Models\Message
*/
Expand Down
6 changes: 5 additions & 1 deletion modules/Platform/Notifications/AccountActivation.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

namespace Modules\Platform\Notifications;

use Nova\Bus\QueueableTrait;
use Nova\Queue\ShouldQueueInterface;
use Nova\Support\Facades\Config;

use Nova\Notification\Notification;
use Nova\Notification\Messages\MailMessage;


class AccountActivation extends Notification
class AccountActivation extends Notification implements ShouldQueueInterface
{
use QueueableTrait;

/**
* The account activation hash.
*
Expand Down
6 changes: 5 additions & 1 deletion modules/Platform/Notifications/AuthenticationToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@

namespace Modules\Platform\Notifications;

use Nova\Bus\QueueableTrait;
use Nova\Queue\ShouldQueueInterface;
use Nova\Notification\Notification;
use Nova\Notification\Messages\MailMessage;


class AuthenticationToken extends Notification
class AuthenticationToken extends Notification implements ShouldQueueInterface
{
use QueueableTrait;

/**
* The login hash.
*
Expand Down

0 comments on commit 4d21efc

Please sign in to comment.