Merge branch 'develop' of https://github.com/friendica/friendica-addons into develop
[friendica-addons.git/.git] / s3_storage / vendor / akeeba / s3 / minitest / Test / SmallInlineFilesOnlyUpload.php
1 <?php
2 /**
3  * Akeeba Engine
4  *
5  * @package   akeebaengine
6  * @copyright Copyright (c)2006-2024 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 small files (under 1MB) using a string source
17  *
18  * @package Akeeba\MiniTest\Test
19  */
20 class SmallInlineFilesOnlyUpload extends SmallInlineFiles
21 {
22         public static function setup(Connector $s3, array $options): void
23         {
24                 static::$deleteRemote  = false;
25                 static::$downloadAfter = false;
26
27                 parent::setup($s3, $options);
28         }
29
30 }