Skip to content

Commit 50779a0

Browse files
committed
Small fix for php versions < 7.x
Small fix for php versions < 7.x
1 parent a25442f commit 50779a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AjaxSubmitButton.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ class AjaxSubmitButton extends Widget
5252
/**
5353
* Icon positions
5454
*/
55-
public const ICON_POSITION_LEFT = 'left';
55+
const ICON_POSITION_LEFT = 'left';
5656

57-
public const ICON_POSITION_RIGHT = 'right';
57+
const ICON_POSITION_RIGHT = 'right';
5858

5959
public $ajaxOptions = [];
6060

0 commit comments

Comments
 (0)