File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
lib/internal/Magento/Framework/File Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -149,28 +149,28 @@ class Uploader
149
149
/**#@+
150
150
* File upload type (multiple or single)
151
151
*/
152
- private const SINGLE_STYLE = 0 ;
152
+ public const SINGLE_STYLE = 0 ;
153
153
154
- private const MULTIPLE_STYLE = 1 ;
154
+ public const MULTIPLE_STYLE = 1 ;
155
155
156
156
/**#@-*/
157
157
158
158
/**
159
159
* Temp file name empty code
160
160
*/
161
- private const TMP_NAME_EMPTY = 666 ;
161
+ public const TMP_NAME_EMPTY = 666 ;
162
162
163
163
/**
164
164
* Maximum Image Width resolution in pixels. For image resizing on client side
165
165
* @deprecated @see \Magento\Framework\Image\Adapter\UploadConfigInterface::getMaxWidth()
166
166
*/
167
- private const MAX_IMAGE_WIDTH = 1920 ;
167
+ public const MAX_IMAGE_WIDTH = 1920 ;
168
168
169
169
/**
170
170
* Maximum Image Height resolution in pixels. For image resizing on client side
171
171
* @deprecated @see \Magento\Framework\Image\Adapter\UploadConfigInterface::getMaxHeight()
172
172
*/
173
- private const MAX_IMAGE_HEIGHT = 1200 ;
173
+ public const MAX_IMAGE_HEIGHT = 1200 ;
174
174
175
175
/**
176
176
* Resulting of uploaded file
You can’t perform that action at this time.
0 commit comments