psalm fixes

pull/229/head
David Goodwin 6 years ago
parent 7408a3b30a
commit 029c4ffe47

@ -81,28 +81,28 @@ class PostfixAdmin {
* *
* @var string * @var string
*/ */
public $shell = null; public $shell;
/** /**
* The class name of the shell that was invoked. * The class name of the shell that was invoked.
* *
* @var string * @var string
*/ */
public $shellClass = null; public $shellClass;
/** /**
* The command called if public methods are available. * The command called if public methods are available.
* *
* @var string * @var string
*/ */
public $shellCommand = null; public $shellCommand;
/** /**
* The name of the shell in camelized. * The name of the shell in camelized.
* *
* @var string * @var string
*/ */
public $shellName = null; public $shellName;
/** /**
* Constructor * Constructor
@ -121,10 +121,10 @@ class PostfixAdmin {
*/ */
private function __initConstants() { private function __initConstants() {
ini_set('display_errors', '1'); ini_set('display_errors', '1');
ini_set('error_reporting', E_ALL); ini_set('error_reporting', '' . E_ALL);
ini_set('html_errors', false); ini_set('html_errors', "0");
ini_set('implicit_flush', true); ini_set('implicit_flush', "1");
ini_set('max_execution_time', 0); ini_set('max_execution_time', "0");
} }
/** /**
@ -321,8 +321,6 @@ class PostfixAdmin {
/** /**
* Helper for recursively paraing params * Helper for recursively paraing params
*
* @return array params
*/ */
private function __parseParams($params) { private function __parseParams($params) {
$count = count($params); $count = count($params);

Loading…
Cancel
Save