14 lines
169 B
PHP
14 lines
169 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Events\Sale;
|
||
|
|
|
||
|
|
use App\Events\Document\DocumentViewed;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @deprecated
|
||
|
|
* @see DocumentViewed
|
||
|
|
*/
|
||
|
|
class InvoiceViewed extends DocumentViewed
|
||
|
|
{
|
||
|
|
}
|