mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-10 09:13:11 +08:00
Made test properties to be private instead of protected
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user