File tree Expand file tree Collapse file tree 2 files changed +21
-21
lines changed
dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/_files Expand file tree Collapse file tree 2 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- $item[ConfigConverter::KEY_TITLE] = __($item )
7
+ __($variable )
8
8
9
- $item[ConfigConverter::KEY_TITLE] = __($item[Converter::KEY_TITLE ])
9
+ __($variable[Class::CONSTANT ])
10
10
11
- $item[ConfigConverter::KEY_TITLE] = __($item['\Magento\Support\Model\Report\Config\Converter::KEY_TITLE' ])
11
+ __($variable[\Namespace\Class::CONSTANT ])
12
12
13
- $item[ConfigConverter::KEY_TITLE] = __($item ['value'])
13
+ __($variable ['value'])
14
14
15
- $item[ConfigConverter::KEY_TITLE] = __(
16
- $item
15
+ __(
16
+ $variable
17
17
)
18
18
19
- Phrase($item )
19
+ Phrase($variable )
20
20
21
- Phrase($item[Converter::KEY_TITLE ])
21
+ Phrase($variable[Class::CONSTANT ])
22
22
23
- Phrase($item['\Magento\Support\Model\Report\Config\Converter::KEY_TITLE' ])
23
+ Phrase($variable[\Namespace\Class::CONSTANT ])
24
24
25
- \Magento\Framework\Phrase($item ['value'])
25
+ \Magento\Framework\Phrase($variable ['value'])
26
26
27
27
\Magento\Framework\Phrase(
28
- $item[Converter::KEY_TITLE ]
28
+ $variable[Class::CONSTANT ]
29
29
)
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- $item[ConfigConverter::KEY_TITLE] = __(Converter::KEY_TITLE )
7
+ __(Class::CONSTANT )
8
8
9
- $item[ConfigConverter::KEY_TITLE] = __(self::KEY_TITLE )
9
+ __(self::CONSTANT )
10
10
11
- $item[ConfigConverter::KEY_TITLE] = __(\Magento\Support\Model\Report\Config\Converter::KEY_TITLE )
11
+ __(\Namespace\Class::CONSTANT )
12
12
13
- $item[ConfigConverter::KEY_TITLE] = __(
14
- Converter::KEY_TITLE
13
+ __(
14
+ Class::CONSTANT
15
15
)
16
16
17
- Phrase(Converter::KEY_TITLE )
17
+ Phrase(Class::CONSTANT )
18
18
19
- Phrase(self::KEY_TITLE )
19
+ Phrase(self::CONSTANT )
20
20
21
- Phrase(\Magento\Support\Model\Report\Config\Converter::KEY_TITLE )
21
+ Phrase(\Namespace\Class::CONSTANT )
22
22
23
- \Magento\Framework\Phrase(Converter::KEY_TITLE )
23
+ \Magento\Framework\Phrase(Class::CONSTANT )
24
24
25
25
\Magento\Framework\Phrase(
26
- Converter::KEY_TITLE
26
+ Class::CONSTANT
27
27
)
You can’t perform that action at this time.
0 commit comments