Add public keyword to methods
[MAILPOET-2413]
This commit is contained in:
@ -8,11 +8,11 @@ class MailPoet {
|
||||
/** @var Supervisor */
|
||||
private $supervisor;
|
||||
|
||||
function __construct(Supervisor $supervisor) {
|
||||
public function __construct(Supervisor $supervisor) {
|
||||
$this->supervisor = $supervisor;
|
||||
}
|
||||
|
||||
function run() {
|
||||
public function run() {
|
||||
$this->supervisor->init();
|
||||
return $this->supervisor->checkDaemon();
|
||||
}
|
||||
|
Reference in New Issue
Block a user