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