-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2295 from CachetHQ/new-notifications
Notifications
- Loading branch information
Showing
61 changed files
with
1,549 additions
and
1,131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,7 @@ REDIS_DATABASE=null | |
REDIS_PORT=null | ||
|
||
GITHUB_TOKEN=null | ||
|
||
NEXMO_KEY=null | ||
NEXMO_SECRET=null | ||
NEXMO_SMS_FROM=Cachet |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of Cachet. | ||
* | ||
* (c) Alt Three Services Limited | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace CachetHQ\Cachet\Bus\Events\User; | ||
|
||
use CachetHQ\Cachet\Models\Invite; | ||
use CachetHQ\Cachet\Models\User; | ||
|
||
/** | ||
* This is the user accepted invite event class. | ||
* | ||
* @author James Brooks <james@alt-three.com> | ||
*/ | ||
final class UserAcceptedInviteEvent implements UserEventInterface | ||
{ | ||
/** | ||
* The user that accepted the invite. | ||
* | ||
* @var \CachetHQ\Cachet\Models\User | ||
*/ | ||
public $user; | ||
|
||
/** | ||
* The invite that the user accepted. | ||
* | ||
* @var \CachetHQ\Cachet\Models\Invite | ||
*/ | ||
public $invite; | ||
|
||
/** | ||
* Create a new user accepted invite event class. | ||
* | ||
* @param \CachetHQ\Cachet\Models\User $user | ||
* @param \CachetHQ\Cachet\Models\Invite $invite | ||
* | ||
* @return void | ||
*/ | ||
public function __construct(User $user, Invite $invite) | ||
{ | ||
$this->user = $user; | ||
$this->invite = $invite; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 0 additions & 64 deletions
64
app/Bus/Handlers/Commands/System/Mail/TestMailCommandHandler.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.