Made test properties to be private instead of protected

This commit is contained in:
Alejandro Celaya
2018-11-20 19:37:22 +01:00
parent 0ae5a53d86
commit 5abd9d1a40
51 changed files with 90 additions and 90 deletions

View File

@@ -12,13 +12,13 @@ class AppOptions extends AbstractOptions
use StringUtilsTrait;
/** @var string */
protected $name = '';
private $name = '';
/** @var string */
protected $version = '1.0';
private $version = '1.0';
/** @var string */
protected $secretKey = '';
private $secretKey = '';
/** @var string|null */
protected $disableTrackParam;
private $disableTrackParam;
/**
* AppOptions constructor.