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

40 lines
762 B
PHP
Raw Normal View History

2020-06-24 13:49:06 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-06-24 13:49:06 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2020-06-24 13:49:06 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-06-24 13:49:06 +02:00
*/
namespace App\Repositories;
use App\Models\Document;
/**
* Class for document repository.
*/
class DocumentRepository extends BaseRepository
{
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
{
2022-03-17 03:20:58 +01:00
// if (! $document->trashed()) {
// return;
// }
2020-06-24 13:49:06 +02:00
2022-03-17 03:20:58 +01:00
// $document->restore();
2020-06-24 13:49:06 +02:00
}
2022-03-17 03:20:58 +01:00
public function archive($document)
{
}
2020-06-24 13:49:06 +02:00
}