File tree Expand file tree Collapse file tree 6 files changed +30
-5
lines changed Expand file tree Collapse file tree 6 files changed +30
-5
lines changed Original file line number Diff line number Diff line change 21
21
],
22
22
"require" : {
23
23
"php" : " ^7.3|^8.0" ,
24
- "illuminate/filesystem" : " ^8.0|^9.0|^10.0" ,
25
- "illuminate/http" : " ^8.0|^9.0|^10.0"
24
+ "illuminate/filesystem" : " ^8.0|^9.0|^10.0|^11.0 " ,
25
+ "illuminate/http" : " ^8.0|^9.0|^10.0|^11.0 "
26
26
},
27
27
"require-dev" : {
28
28
"roave/security-advisories" : " dev-latest" ,
29
- "illuminate/config" : " ^8.0|^9.0|^10.0" ,
30
- "illuminate/container" : " ^8.0|^9.0|^10.0" ,
29
+ "illuminate/config" : " ^8.0|^9.0|^10.0|^11.0 " ,
30
+ "illuminate/container" : " ^8.0|^9.0|^10.0|^11.0 " ,
31
31
"mikey179/vfsstream" : " ^1.6" ,
32
32
"mockery/mockery" : " ^1.0" ,
33
33
"nesbot/carbon" : " ^2.0.0" ,
Original file line number Diff line number Diff line change 12
12
13
13
class DropzoneTest extends TestCase
14
14
{
15
+ /**
16
+ * @var Dropzone
17
+ */
18
+ private $ api ;
19
+
15
20
protected function setUp (): void
16
21
{
17
22
parent ::setUp ();
Original file line number Diff line number Diff line change 12
12
13
13
class FileAPITest extends TestCase
14
14
{
15
+ /**
16
+ * @var FileAPI
17
+ */
18
+ private $ api ;
19
+
15
20
protected function setUp (): void
16
21
{
17
22
parent ::setUp ();
@@ -43,7 +48,7 @@ public function testReceiveChunkedFile(): void
43
48
44
49
$ this ->request ->headers ->replace ([
45
50
'content-disposition ' => 'attachment; filename=" ' .$ this ->uploadedFile ->getClientOriginalName ().'" ' ,
46
- 'content-range ' => "bytes {$ start }- {$ end }/ $ { total}" ,
51
+ 'content-range ' => "bytes {$ start }- {$ end }/ { $ total }" ,
47
52
'content-type ' => $ this ->uploadedFile ->getMimeType (),
48
53
'content-length ' => $ chunkSize ,
49
54
]);
Original file line number Diff line number Diff line change 11
11
12
12
class FilePondTest extends TestCase
13
13
{
14
+ /**
15
+ * @var FilePond
16
+ */
17
+ private $ api ;
18
+
14
19
protected function setUp (): void
15
20
{
16
21
parent ::setUp ();
Original file line number Diff line number Diff line change 12
12
13
13
class FineUploaderTest extends TestCase
14
14
{
15
+ /**
16
+ * @var FineUploader
17
+ */
18
+ private $ api ;
19
+
15
20
protected function setUp (): void
16
21
{
17
22
parent ::setUp ();
Original file line number Diff line number Diff line change 12
12
13
13
class PluploadTest extends TestCase
14
14
{
15
+ /**
16
+ * @var Plupload
17
+ */
18
+ private $ api ;
19
+
15
20
protected function setUp (): void
16
21
{
17
22
parent ::setUp ();
You can’t perform that action at this time.
0 commit comments