Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit eb02132

Browse files
committed
typos
1 parent 6b06156 commit eb02132

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,10 @@ return [
132132

133133
/*
134134
* css farmework
135+
* ex.
136+
* MIX_MM_FRAMEWORK=bulma
135137
*/
136-
'framework'=> env('MIX_MM_FRAMEWORK'),
138+
'framework' => env('MIX_MM_FRAMEWORK'),
137139
];
138140
```
139141

src/config/mediaManager.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
/*
1010
* filesystem disk
1111
*/
12-
'storage_disk'=> 'public',
12+
'storage_disk' => 'public',
1313

1414
/*
1515
* remove any file special chars except (. _ -)
1616
*/
17-
'allowed_fileNames_chars'=> '.\_\-',
17+
'allowed_fileNames_chars' => '.\_\-',
1818

1919
/*
2020
* remove any folder special chars except (_ -)
2121
*
2222
* to add & nest folders in one go use '\/\_\-'
2323
*/
24-
'allowed_folderNames_chars'=> '\_\-',
24+
'allowed_folderNames_chars' => '\_\-',
2525

2626
/*
2727
* disallow uploading files with the following mimetypes
@@ -32,10 +32,12 @@
3232
/*
3333
* when file names gets cleand up
3434
*/
35-
'sanitized_text'=> 'sanitized',
35+
'sanitized_text' => 'sanitized',
3636

3737
/*
3838
* css farmework
39+
* ex.
40+
* MIX_MM_FRAMEWORK=bulma
3941
*/
40-
'framework'=> env('MIX_MM_FRAMEWORK'),
42+
'framework' => env('MIX_MM_FRAMEWORK'),
4143
];

0 commit comments

Comments
 (0)