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