Issues (339)

config/uploadable.php (9 issues)

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