More linting!

This commit is contained in:
jgen
2014-04-28 02:23:45 -04:00
parent 022c162f40
commit e37c5cb9d0
7 changed files with 42 additions and 22 deletions

View File

@@ -12,8 +12,12 @@
* activated; new config options are in $_POST
*/
class ConfigSaveEvent extends Event {
var $config;
/** @var \Config */
public $config;
/**
* @param Config $config
*/
public function __construct(Config $config) {
$this->config = $config;
}