14 lines
177 B
PHP
14 lines
177 B
PHP
<?php
|
|
|
|
namespace App\Events\Sale;
|
|
|
|
use App\Events\Document\DocumentUpdating;
|
|
|
|
/**
|
|
* @deprecated
|
|
* @see DocumentUpdating
|
|
*/
|
|
class InvoiceUpdating extends DocumentUpdating
|
|
{
|
|
}
|