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

42 lines
784 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
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. 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;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
2020-06-24 13:49:06 +02:00
/**
* 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
}