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