1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Repositories/DocumentRepository.php

51 lines
955 B
PHP
Raw Normal View History

2020-06-24 13:49:06 +02:00
<?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();
}
2020-06-24 14:12:43 +02:00
public function restore($document)
2020-06-24 13:49:06 +02:00
{
2020-06-24 14:12:43 +02:00
if (! $document->trashed()) {
return;
}
2020-06-24 13:49:06 +02:00
2020-06-24 14:12:43 +02:00
$document->restore();
if (class_exists($className)) {
event(new $className($document));
}
2020-06-24 13:49:06 +02:00
}
}