@@ -112,16 +112,16 @@ discard block |
||
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
115 | - * {@inheritdoc} |
|
116 | - */ |
|
115 | + * {@inheritdoc} |
|
116 | + */ |
|
117 | 117 | public function getExtension(): string |
118 | 118 | { |
119 | 119 | return $this->extension; |
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
123 | - * {@inheritdoc} |
|
124 | - */ |
|
123 | + * {@inheritdoc} |
|
124 | + */ |
|
125 | 125 | public function setExtension(string $name): self |
126 | 126 | { |
127 | 127 | $this->extension = strtolower($name); |
@@ -130,8 +130,8 @@ discard block |
||
130 | 130 | } |
131 | 131 | |
132 | 132 | /** |
133 | - * {@inheritdoc} |
|
134 | - */ |
|
133 | + * {@inheritdoc} |
|
134 | + */ |
|
135 | 135 | public function getFullName(): string |
136 | 136 | { |
137 | 137 | return $this->extension === '' ? |
@@ -140,8 +140,8 @@ discard block |
||
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
143 | - * {@inheritdoc} |
|
144 | - */ |
|
143 | + * {@inheritdoc} |
|
144 | + */ |
|
145 | 145 | public function getMD5(): string |
146 | 146 | { |
147 | 147 | $hash = md5_file($this->getPathname()); |
@@ -149,24 +149,24 @@ discard block |
||
149 | 149 | } |
150 | 150 | |
151 | 151 | /** |
152 | - * {@inheritdoc} |
|
153 | - */ |
|
152 | + * {@inheritdoc} |
|
153 | + */ |
|
154 | 154 | public function getPathname(): string |
155 | 155 | { |
156 | 156 | return parent::getPathname(); |
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
160 | - * {@inheritdoc} |
|
161 | - */ |
|
160 | + * {@inheritdoc} |
|
161 | + */ |
|
162 | 162 | public function getSize(): int |
163 | 163 | { |
164 | 164 | return parent::getSize(); |
165 | 165 | } |
166 | 166 | |
167 | 167 | /** |
168 | - * {@inheritdoc} |
|
169 | - */ |
|
168 | + * {@inheritdoc} |
|
169 | + */ |
|
170 | 170 | public function getMimeType(): string |
171 | 171 | { |
172 | 172 | if (empty($this->mimeType)) { |
@@ -185,16 +185,16 @@ discard block |
||
185 | 185 | } |
186 | 186 | |
187 | 187 | /** |
188 | - * {@inheritdoc} |
|
189 | - */ |
|
188 | + * {@inheritdoc} |
|
189 | + */ |
|
190 | 190 | public function getName(): string |
191 | 191 | { |
192 | 192 | return $this->name; |
193 | 193 | } |
194 | 194 | |
195 | 195 | /** |
196 | - * {@inheritdoc} |
|
197 | - */ |
|
196 | + * {@inheritdoc} |
|
197 | + */ |
|
198 | 198 | public function setName(string $name): self |
199 | 199 | { |
200 | 200 | $cleanName = preg_replace('/[^A-Za-z0-9\.]+/', '_', $name); |
@@ -207,8 +207,8 @@ discard block |
||
207 | 207 | } |
208 | 208 | |
209 | 209 | /** |
210 | - * {@inheritdoc} |
|
211 | - */ |
|
210 | + * {@inheritdoc} |
|
211 | + */ |
|
212 | 212 | public function getError(): int |
213 | 213 | { |
214 | 214 | return $this->error; |
@@ -60,8 +60,7 @@ |
||
60 | 60 | * @class File |
61 | 61 | * @package Platine\Upload\File |
62 | 62 | */ |
63 | -class File extends SplFileInfo implements FileInterface |
|
64 | -{ |
|
63 | +class File extends SplFileInfo implements FileInterface { |
|
65 | 64 | /** |
66 | 65 | * Factory used to create new instance |
67 | 66 | * @var callable|null |
@@ -146,8 +146,8 @@ |
||
146 | 146 | } |
147 | 147 | |
148 | 148 | /** |
149 | - * Whether the file is uploaded |
|
150 | - */ |
|
149 | + * Whether the file is uploaded |
|
150 | + */ |
|
151 | 151 | public function isUploaded(): bool |
152 | 152 | { |
153 | 153 | return count($this->files) > 0; |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * The uploaded file information |
103 | 103 | * @var UploadFileInfo|array<int, UploadFileInfo>|bool |
104 | 104 | */ |
105 | - protected UploadFileInfo|array|bool $uploadInfo = false; |
|
105 | + protected UploadFileInfo | array | bool $uploadInfo = false; |
|
106 | 106 | |
107 | 107 | /** |
108 | 108 | * Create new instance |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | * Return the uploaded file information |
245 | 245 | * @return UploadFileInfo|array<int, UploadFileInfo>|bool |
246 | 246 | */ |
247 | - public function getInfo(): UploadFileInfo|array|bool |
|
247 | + public function getInfo(): UploadFileInfo | array | bool |
|
248 | 248 | { |
249 | 249 | return $this->uploadInfo; |
250 | 250 | } |
@@ -66,8 +66,7 @@ |
||
66 | 66 | * @class Upload |
67 | 67 | * @package Platine\Upload |
68 | 68 | */ |
69 | -class Upload |
|
70 | -{ |
|
69 | +class Upload { |
|
71 | 70 | /** |
72 | 71 | * Upload Storage |
73 | 72 | * @var StorageInterface |
@@ -141,7 +141,7 @@ |
||
141 | 141 | $value = floatval($matches['size']); |
142 | 142 | } |
143 | 143 | |
144 | - return (int)($value * pow(1024, $units[$unit])); |
|
144 | + return (int) ($value * pow(1024, $units[$unit])); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | /** |
@@ -59,8 +59,7 @@ |
||
59 | 59 | * @class Helper |
60 | 60 | * @package Platine\Upload\Util |
61 | 61 | */ |
62 | -class Helper |
|
63 | -{ |
|
62 | +class Helper { |
|
64 | 63 | /** |
65 | 64 | * Normalize the uploaded files to fit our format |
66 | 65 | * |
@@ -62,8 +62,7 @@ discard block |
||
62 | 62 | * @class FileSystem |
63 | 63 | * @package Platine\Upload\Storage |
64 | 64 | */ |
65 | -class FileSystem implements StorageInterface |
|
66 | -{ |
|
65 | +class FileSystem implements StorageInterface { |
|
67 | 66 | /** |
68 | 67 | * Path to move uploaded files |
69 | 68 | * @var string |
@@ -81,8 +80,7 @@ discard block |
||
81 | 80 | * @param string $path |
82 | 81 | * @param bool $overwrite |
83 | 82 | */ |
84 | - public function __construct(string $path, bool $overwrite) |
|
85 | - { |
|
83 | + public function __construct(string $path, bool $overwrite) { |
|
86 | 84 | $this->overwrite = $overwrite; |
87 | 85 | $directory = $this->normalizePath($path); |
88 | 86 |
@@ -59,8 +59,7 @@ |
||
59 | 59 | * @class StorageInterface |
60 | 60 | * @package Platine\Upload\Storage |
61 | 61 | */ |
62 | -interface StorageInterface |
|
63 | -{ |
|
62 | +interface StorageInterface { |
|
64 | 63 | /** |
65 | 64 | * Move the uploaded file to destination |
66 | 65 | * @param File $file |
@@ -44,6 +44,5 @@ |
||
44 | 44 | * @class UploadException |
45 | 45 | * @package Platine\Upload\Exception |
46 | 46 | */ |
47 | -class UploadException extends RuntimeException |
|
48 | -{ |
|
47 | +class UploadException extends RuntimeException { |
|
49 | 48 | } |
@@ -42,6 +42,5 @@ |
||
42 | 42 | * @class StorageException |
43 | 43 | * @package Platine\Upload\Exception |
44 | 44 | */ |
45 | -class StorageException extends UploadException |
|
46 | -{ |
|
45 | +class StorageException extends UploadException { |
|
47 | 46 | } |
@@ -58,8 +58,7 @@ discard block |
||
58 | 58 | * @class Validator |
59 | 59 | * @package Platine\Upload\Validator |
60 | 60 | */ |
61 | -class Validator |
|
62 | -{ |
|
61 | +class Validator { |
|
63 | 62 | /** |
64 | 63 | * The validate rules |
65 | 64 | * @var RuleInterface[] |
@@ -70,8 +69,7 @@ discard block |
||
70 | 69 | * Create new instance |
71 | 70 | * @param RuleInterface[] $rules |
72 | 71 | */ |
73 | - public function __construct(array $rules = []) |
|
74 | - { |
|
72 | + public function __construct(array $rules = []) { |
|
75 | 73 | $this->rules = $rules; |
76 | 74 | } |
77 | 75 |
@@ -58,8 +58,7 @@ |
||
58 | 58 | * @class RuleInterface |
59 | 59 | * @package Platine\Upload\Validator |
60 | 60 | */ |
61 | -interface RuleInterface |
|
62 | -{ |
|
61 | +interface RuleInterface { |
|
63 | 62 | /** |
64 | 63 | * Method to validate this Rule |
65 | 64 | * |