@@ -47,7 +47,7 @@ public function provideFilesystems()
47
47
*/
48
48
public function testFilesystems (string $ fsName )
49
49
{
50
- $ kernel = $ this ->createFysystemKernel ();
50
+ $ kernel = $ this ->createFlysystemKernel ();
51
51
$ container = $ kernel ->getContainer ()->get ('test.service_container ' );
52
52
53
53
$ fs = $ container ->get ('flysystem.test. ' .$ fsName );
@@ -60,7 +60,7 @@ public function testFilesystems(string $fsName)
60
60
*/
61
61
public function testTaggedCollection (string $ fsName )
62
62
{
63
- $ kernel = $ this ->createFysystemKernel ();
63
+ $ kernel = $ this ->createFlysystemKernel ();
64
64
$ container = $ kernel ->getContainer ()->get ('test.service_container ' );
65
65
66
66
if (!$ container ->has ('storages_tagged_collection ' )) {
@@ -74,7 +74,7 @@ public function testTaggedCollection(string $fsName)
74
74
75
75
public function testPublicUrl ()
76
76
{
77
- $ kernel = $ this ->createFysystemKernel ();
77
+ $ kernel = $ this ->createFlysystemKernel ();
78
78
$ container = $ kernel ->getContainer ()->get ('test.service_container ' );
79
79
80
80
$ fs = $ container ->get ('flysystem.test.fs_public_url ' );
@@ -84,7 +84,7 @@ public function testPublicUrl()
84
84
85
85
public function testPublicUrls ()
86
86
{
87
- $ kernel = $ this ->createFysystemKernel ();
87
+ $ kernel = $ this ->createFlysystemKernel ();
88
88
$ container = $ kernel ->getContainer ()->get ('test.service_container ' );
89
89
90
90
$ fs = $ container ->get ('flysystem.test.fs_public_urls ' );
@@ -96,7 +96,7 @@ public function testPublicUrls()
96
96
97
97
public function testUrlGenerators ()
98
98
{
99
- $ kernel = $ this ->createFysystemKernel ();
99
+ $ kernel = $ this ->createFlysystemKernel ();
100
100
$ container = $ kernel ->getContainer ()->get ('test.service_container ' );
101
101
102
102
$ fs = $ container ->get ('flysystem.test.fs_url_generator ' );
@@ -107,7 +107,7 @@ public function testUrlGenerators()
107
107
108
108
public function testReadOnly ()
109
109
{
110
- $ kernel = $ this ->createFysystemKernel ();
110
+ $ kernel = $ this ->createFlysystemKernel ();
111
111
$ container = $ kernel ->getContainer ()->get ('test.service_container ' );
112
112
113
113
$ fs = $ container ->get ('flysystem.test.fs_read_only ' );
@@ -118,7 +118,7 @@ public function testReadOnly()
118
118
$ fs ->write ('/path/to/file ' , 'Unable to write in read only ' );
119
119
}
120
120
121
- private function createFysystemKernel (): FlysystemAppKernel
121
+ private function createFlysystemKernel (): FlysystemAppKernel
122
122
{
123
123
(new Dotenv ())->populate ([
124
124
'AWS_BUCKET ' => 'bucket-name ' ,
0 commit comments