File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public function testEmptyArrayForFileWithoutNamespaceOrClass()
25
25
'getFileContents '
26
26
])->getMock ();
27
27
$ scanner ->expects (self ::once ())->method ('getFileContents ' )->willReturn (
28
- <<<PHP
28
+ <<<PHP
29
29
<?php
30
30
31
31
echo 'hello world';
@@ -47,7 +47,7 @@ public function testGetClassName()
47
47
'getFileContents '
48
48
])->getMock ();
49
49
$ scanner ->expects (self ::once ())->method ('getFileContents ' )->willReturn (
50
- <<<PHP
50
+ <<<PHP
51
51
<?php
52
52
53
53
class ThisIsATest {
@@ -69,7 +69,7 @@ public function testGetClassNameAndSingleNamespace()
69
69
'getFileContents '
70
70
])->getMock ();
71
71
$ scanner ->expects (self ::once ())->method ('getFileContents ' )->willReturn (
72
- <<<PHP
72
+ <<<PHP
73
73
<?php
74
74
75
75
namespace NS;
@@ -93,7 +93,7 @@ public function testGetClassNameAndMultiNamespace()
93
93
'getFileContents '
94
94
])->getMock ();
95
95
$ scanner ->expects (self ::once ())->method ('getFileContents ' )->willReturn (
96
- <<<PHP
96
+ <<<PHP
97
97
<?php
98
98
99
99
namespace This\Is\My\Ns;
@@ -126,7 +126,7 @@ public function testGetMultiClassNameAndMultiNamespace()
126
126
'getFileContents '
127
127
])->getMock ();
128
128
$ scanner ->expects (self ::once ())->method ('getFileContents ' )->willReturn (
129
- <<<PHP
129
+ <<<PHP
130
130
<?php
131
131
132
132
namespace This\Is\My\Ns;
@@ -166,7 +166,7 @@ public function testBracketedNamespacesAndClasses()
166
166
'getFileContents '
167
167
])->getMock ();
168
168
$ scanner ->expects (self ::once ())->method ('getFileContents ' )->willReturn (
169
- <<<PHP
169
+ <<<PHP
170
170
<?php
171
171
172
172
namespace This\Is\My\Ns {
You can’t perform that action at this time.
0 commit comments