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