14 lines
165 B
PHP
14 lines
165 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Jobs\Sale;
|
||
|
|
||
|
use App\Jobs\Document\UpdateDocument;
|
||
|
|
||
|
/**
|
||
|
* @deprecated
|
||
|
* @see UpdateDocument
|
||
|
*/
|
||
|
class UpdateInvoice extends UpdateDocument
|
||
|
{
|
||
|
}
|