d7e0d73ee6c15c711dfcb60d35fdaafd5d3c19aa
[friendica-addons.git/.git] / s3_storage / vendor / akeeba / s3 / minitest / Test / SmallInlineFilesNoDelete.php
1 <?php
2 /**
3  * Akeeba Engine
4  *
5  * @package   akeebaengine
6  * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd
7  * @license   GNU General Public License version 3, or later
8  */
9
10 namespace Akeeba\MiniTest\Test;
11
12
13 use Akeeba\S3\Connector;
14
15 /**
16  * Upload and download small files (under 1MB) using a string source
17  *
18  * @package Akeeba\MiniTest\Test
19  */
20 class SmallInlineFilesNoDelete extends SmallInlineFiles
21 {
22         public static function setup(Connector $s3, array $options): void
23         {
24                 static:: $deleteRemote = false;
25
26                 parent::setup($s3, $options);
27         }
28 }