Automated formatting changes

This commit is contained in:
Formatter Bot 2020-09-13 18:40:21 +00:00
parent 6ef482aeaa
commit f6e0533909
2 changed files with 17 additions and 18 deletions

View File

@ -16,8 +16,8 @@ declare(strict_types=1);
namespace Modules\Media\Models; namespace Modules\Media\Models;
use phpOMS\System\File\Local\Directory;
use phpOMS\Log\FileLogger; use phpOMS\Log\FileLogger;
use phpOMS\System\File\Local\Directory;
/** /**
* Upload. * Upload.
@ -107,7 +107,7 @@ class UploadFile
bool $absolute = false, bool $absolute = false,
string $encryptionKey = '', string $encryptionKey = '',
string $encoding = 'UTF-8' string $encoding = 'UTF-8'
): array { ) : array {
$result = []; $result = [];
if (\count($files) === \count($files, \COUNT_RECURSIVE)) { if (\count($files) === \count($files, \COUNT_RECURSIVE)) {
@ -255,7 +255,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
private function createFileName(string $path, string $tempName, string $extension): string private function createFileName(string $path, string $tempName, string $extension) : string
{ {
$rnd = ''; $rnd = '';
$limit = 0; $limit = 0;
@ -290,7 +290,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
private function interlace(string $extension, string $path): void private function interlace(string $extension, string $path) : void
{ {
if ($extension === 'png') { if ($extension === 'png') {
$img = \imagecreatefrompng($path); $img = \imagecreatefrompng($path);
@ -324,7 +324,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
private function findOutputDir(): string private function findOutputDir() : string
{ {
do { do {
$rndPath = \str_pad(\dechex(\mt_rand(0, 65535)), 4, '0', \STR_PAD_LEFT); $rndPath = \str_pad(\dechex(\mt_rand(0, 65535)), 4, '0', \STR_PAD_LEFT);
@ -342,7 +342,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
private function getUploadError($error): int private function getUploadError($error) : int
{ {
switch ($error) { switch ($error) {
case \UPLOAD_ERR_NO_FILE: case \UPLOAD_ERR_NO_FILE:
@ -360,7 +360,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function getMaxSize(): int public function getMaxSize() : int
{ {
return $this->maxSize; return $this->maxSize;
} }
@ -372,7 +372,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setInterlaced(bool $isInterlaced): void public function setInterlaced(bool $isInterlaced) : void
{ {
$this->isInterlaced = $isInterlaced; $this->isInterlaced = $isInterlaced;
} }
@ -384,7 +384,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setMaxSize(int $maxSize): void public function setMaxSize(int $maxSize) : void
{ {
$this->maxSize = $maxSize; $this->maxSize = $maxSize;
} }
@ -394,7 +394,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function getAllowedTypes(): array public function getAllowedTypes() : array
{ {
return $this->allowedTypes; return $this->allowedTypes;
} }
@ -406,7 +406,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setAllowedTypes(array $allowedTypes): void public function setAllowedTypes(array $allowedTypes) : void
{ {
$this->allowedTypes = $allowedTypes; $this->allowedTypes = $allowedTypes;
} }
@ -418,7 +418,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function addAllowedTypes(string $allowedTypes): void public function addAllowedTypes(string $allowedTypes) : void
{ {
$this->allowedTypes[] = $allowedTypes; $this->allowedTypes[] = $allowedTypes;
} }
@ -428,7 +428,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function getOutputDir(): string public function getOutputDir() : string
{ {
return $this->outputDir; return $this->outputDir;
} }
@ -442,7 +442,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setOutputDir(string $outputDir): void public function setOutputDir(string $outputDir) : void
{ {
$this->outputDir = $outputDir; $this->outputDir = $outputDir;
} }
@ -452,7 +452,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function getFileName(): string public function getFileName() : string
{ {
return $this->fileName; return $this->fileName;
} }
@ -466,7 +466,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setFileName(string $fileName): void public function setFileName(string $fileName) : void
{ {
$this->fileName = $fileName; $this->fileName = $fileName;
} }
@ -480,7 +480,7 @@ class UploadFile
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setPreserveFileName(bool $preserveFileName): void public function setPreserveFileName(bool $preserveFileName) : void
{ {
$this->preserveFileName = $preserveFileName; $this->preserveFileName = $preserveFileName;
} }

View File

@ -15,7 +15,6 @@ declare(strict_types=1);
use phpOMS\System\File\FileUtils; use phpOMS\System\File\FileUtils;
use phpOMS\Uri\UriFactory; use phpOMS\Uri\UriFactory;
use phpOMS\Utils\Converter\FileSizeType; use phpOMS\Utils\Converter\FileSizeType;
use phpOMS\Utils\Converter\Measurement;
include __DIR__ . '/template-functions.php'; include __DIR__ . '/template-functions.php';