-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
552aff0
commit 9f03a91
Showing
4 changed files
with
124 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the Novo SGA project. | ||
* | ||
* (c) Rogerio Lino <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Novosga\Event; | ||
|
||
use Novosga\Entity\AtendimentoInterface; | ||
use Novosga\Entity\UsuarioInterface; | ||
|
||
/** | ||
* PreTicketNoShowEvent | ||
* | ||
* @author Rogerio Lino <[email protected]> | ||
*/ | ||
final readonly class PreTicketNoShowEvent | ||
{ | ||
public function __construct( | ||
public AtendimentoInterface $atendimento, | ||
public UsuarioInterface $usuario, | ||
) { | ||
} | ||
} |
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,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the Novo SGA project. | ||
* | ||
* (c) Rogerio Lino <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Novosga\Event; | ||
|
||
use Novosga\Entity\AtendimentoInterface; | ||
use Novosga\Entity\UsuarioInterface; | ||
|
||
/** | ||
* PreTicketStartEvent | ||
* | ||
* @author Rogerio Lino <[email protected]> | ||
*/ | ||
final readonly class PreTicketStartEvent | ||
{ | ||
public function __construct( | ||
public AtendimentoInterface $atendimento, | ||
public UsuarioInterface $usuario, | ||
) { | ||
} | ||
} |
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,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the Novo SGA project. | ||
* | ||
* (c) Rogerio Lino <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Novosga\Event; | ||
|
||
use Novosga\Entity\AtendimentoInterface; | ||
use Novosga\Entity\UsuarioInterface; | ||
|
||
/** | ||
* TicketNoShowEvent | ||
* | ||
* @author Rogerio Lino <[email protected]> | ||
*/ | ||
final readonly class TicketNoShowEvent | ||
{ | ||
public function __construct( | ||
public AtendimentoInterface $atendimento, | ||
public UsuarioInterface $usuario, | ||
) { | ||
} | ||
} |
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,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the Novo SGA project. | ||
* | ||
* (c) Rogerio Lino <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Novosga\Event; | ||
|
||
use Novosga\Entity\AtendimentoInterface; | ||
use Novosga\Entity\UsuarioInterface; | ||
|
||
/** | ||
* TicketStartEvent | ||
* | ||
* @author Rogerio Lino <[email protected]> | ||
*/ | ||
final readonly class TicketStartEvent | ||
{ | ||
public function __construct( | ||
public AtendimentoInterface $atendimento, | ||
public UsuarioInterface $usuario, | ||
) { | ||
} | ||
} |