Skip to content

Commit 405f629

Browse files
committed
Fixed the static tests
1 parent 4e52b2d commit 405f629

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/code/Magento/Variable/Model/Variable.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
*/
1919
class Variable extends \Magento\Framework\Model\AbstractModel
2020
{
21-
const TYPE_TEXT = 'text';
21+
public const TYPE_TEXT = 'text';
2222

23-
const TYPE_HTML = 'html';
23+
public const TYPE_HTML = 'html';
2424

2525
/**
2626
* @var int
@@ -141,6 +141,7 @@ public function validate()
141141

142142
/**
143143
* Retrieve variables option array
144+
*
144145
* @todo: extract method as separate class
145146
* @param bool $withGroup
146147
* @return array

0 commit comments

Comments
 (0)