43 lines
751 B
PHP
43 lines
751 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Invoice Ninja (https://invoiceninja.com)
|
||
|
|
*
|
||
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
|
*
|
||
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
|
*
|
||
|
|
* @license https://opensource.org/licenses/AAL
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace App\Repositories;
|
||
|
|
|
||
|
|
use App\Models\Document;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class for document repository.
|
||
|
|
*/
|
||
|
|
class DocumentRepository extends BaseRepository
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Gets the class name.
|
||
|
|
*
|
||
|
|
* @return string The class name.
|
||
|
|
*/
|
||
|
|
public function getClassName()
|
||
|
|
{
|
||
|
|
return Document::class;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function delete($document)
|
||
|
|
{
|
||
|
|
$document->deleteFile();
|
||
|
|
$document->forceDelete();
|
||
|
|
}
|
||
|
|
|
||
|
|
public function restore()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|