fix access level for default values

This commit is contained in:
yggverse 2024-07-07 23:15:11 +03:00
parent 42a5293f6c
commit 4b296f309c
3 changed files with 5 additions and 5 deletions

View file

@ -8,9 +8,9 @@ abstract class Entry
{
public \GtkEntry $gtk;
private int $_length = 1024;
private string $_placeholder = '';
private string $_value = '';
protected int $_length = 1024;
protected string $_placeholder = '';
protected string $_value = '';
public function __construct()
{