forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Module needs to add feature to payment screen (openemr#6878)
* Module needs to add feature to payment screen * forgot to import the class.
- Loading branch information
1 parent
658135c
commit 58d1ec4
Showing
2 changed files
with
36 additions
and
12 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
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,22 @@ | ||
<?php | ||
|
||
/* | ||
* @package openemr | ||
* @link https://www.open-emr.org | ||
* @author Sherwin Gaddis <[email protected]> | ||
* @copyright (c) 2023 | ||
* @https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 | ||
*/ | ||
|
||
namespace OpenEMR\Events\Billing\Payments; | ||
|
||
use Symfony\Contracts\EventDispatcher\Event; | ||
|
||
class PostFrontPayment extends Event | ||
{ | ||
const ACTION_POST_FRONT_PAYMENT = 'billing.payment.action.post.front.payment'; | ||
public function __construct() | ||
{ | ||
//Do something epic here | ||
} | ||
} |