File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
setup/src/Magento/Setup/Module/I18n/Parser/Adapter Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Js extends AbstractAdapter
27
27
public function __construct (
28
28
File $ fileSystem
29
29
) {
30
- $ this ->_fileSystem = $ fileSystem ;
30
+ $ this ->_filesystem = $ fileSystem ;
31
31
}
32
32
/**
33
33
* Covers
@@ -52,7 +52,7 @@ public function __construct(
52
52
protected function _parse ()
53
53
{
54
54
55
- $ fileHandle = $ this ->_fileSystem ->fileOpen ($ this ->_file , 'r ' );
55
+ $ fileHandle = $ this ->_filesystem ->fileOpen ($ this ->_file , 'r ' );
56
56
$ lineNumber = 0 ;
57
57
try {
58
58
while (($ line = $ this ->fileReadLine ($ fileHandle , 0 )) !== false ) {
@@ -76,12 +76,12 @@ protected function _parse()
76
76
}
77
77
}
78
78
} catch (\Exception $ e ) {
79
- $ this ->_fileSystem ->fileClose ($ fileHandle );
79
+ $ this ->_filesystem ->fileClose ($ fileHandle );
80
80
throw new FileSystemException (
81
81
new \Magento \Framework \Phrase ('Stream get line failed %1 ' , [$ e ->getMessage ()])
82
82
);
83
83
}
84
- $ this ->_fileSystem ->fileClose ($ fileHandle );
84
+ $ this ->_filesystem ->fileClose ($ fileHandle );
85
85
}
86
86
87
87
/**
You can’t perform that action at this time.
0 commit comments