Issues (339)

config/uploadable.php (4 issues)

1
<?php
2
3
use UniSharp\Uploadable\Plugins\ImagePlugin;
4
5
return [
6
    'use_image_orientate' => false,
7
    'thumbs' => [
8
        's' => '96x96',
9
        'm' => '256x256',
10
        'l' => '480x480'
11
    ],
12
    'plugins' => [
13
        'image' => [
0 ignored issues
show
This array key does not seem to be aligned correctly; expected 18 spaces, but found 8.
Loading history...
Multi-line array contains a single value; use single-line array instead
Loading history...
Short array syntax is not allowed
Loading history...
14
            ImagePlugin::class
15
        ]
0 ignored issues
show
The closing parenthesis does not seem to be aligned correctly; expected 19 space(s), but found 8.
Loading history...
16
    ]
17
];
18