File tree Expand file tree Collapse file tree 3 files changed +17
-14
lines changed Expand file tree Collapse file tree 3 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 24
24
"require-dev" : {
25
25
"larastan/larastan" : " ^2.9.1" ,
26
26
"orchestra/testbench" : " ^9" ,
27
- "laravel/pint" : " ^1.14"
27
+ "laravel/pint" : " ^1.14" ,
28
+ "rector/rector" : " ^1.0"
28
29
},
29
30
"autoload" : {
30
31
"psr-4" : {
49
50
"scripts" : {
50
51
"test" : " ./vendor/bin/phpunit" ,
51
52
"pint" : " ./vendor/bin/pint" ,
53
+ "rector" : " ./vendor/bin/rector" ,
52
54
"stan" : " ./vendor/bin/phpstan analyse --memory-limit=2G --ansi --no-progress --no-interaction --configuration=phpstan.neon.dist" ,
53
55
"pr" : [
54
56
" @pint" ,
57
+ " @rector" ,
55
58
" @stan" ,
56
59
" @test"
57
60
]
Original file line number Diff line number Diff line change @@ -20,21 +20,21 @@ class Builder
20
20
use Macroable;
21
21
22
22
// Select plugin constants.
23
- final const SELECT_STYLE_API = 'api ' ;
23
+ final public const SELECT_STYLE_API = 'api ' ;
24
24
25
- final const SELECT_STYLE_SINGLE = 'single ' ;
25
+ final public const SELECT_STYLE_SINGLE = 'single ' ;
26
26
27
- final const SELECT_STYLE_MULTI = 'multi ' ;
27
+ final public const SELECT_STYLE_MULTI = 'multi ' ;
28
28
29
- final const SELECT_STYLE_OS = 'os ' ;
29
+ final public const SELECT_STYLE_OS = 'os ' ;
30
30
31
- final const SELECT_STYLE_MULTI_SHIFT = 'multi+shift ' ;
31
+ final public const SELECT_STYLE_MULTI_SHIFT = 'multi+shift ' ;
32
32
33
- final const SELECT_ITEMS_ROW = 'row ' ;
33
+ final public const SELECT_ITEMS_ROW = 'row ' ;
34
34
35
- final const SELECT_ITEMS_COLUMN = 'column ' ;
35
+ final public const SELECT_ITEMS_COLUMN = 'column ' ;
36
36
37
- final const SELECT_ITEMS_CELL = 'cell ' ;
37
+ final public const SELECT_ITEMS_CELL = 'cell ' ;
38
38
39
39
/**
40
40
* The default type to use for the DataTables javascript.
Original file line number Diff line number Diff line change @@ -24,15 +24,15 @@ class Editor extends Fluent
24
24
use HasAuthorizations;
25
25
use HasEvents;
26
26
27
- final const DISPLAY_LIGHTBOX = 'lightbox ' ;
27
+ final public const DISPLAY_LIGHTBOX = 'lightbox ' ;
28
28
29
- final const DISPLAY_ENVELOPE = 'envelope ' ;
29
+ final public const DISPLAY_ENVELOPE = 'envelope ' ;
30
30
31
- final const DISPLAY_BOOTSTRAP = 'bootstrap ' ;
31
+ final public const DISPLAY_BOOTSTRAP = 'bootstrap ' ;
32
32
33
- final const DISPLAY_FOUNDATION = 'foundation ' ;
33
+ final public const DISPLAY_FOUNDATION = 'foundation ' ;
34
34
35
- final const DISPLAY_JQUERYUI = 'jqueryui ' ;
35
+ final public const DISPLAY_JQUERYUI = 'jqueryui ' ;
36
36
37
37
public array $ events = [];
38
38
You can’t perform that action at this time.
0 commit comments