style: fix php-cs-fixer linting (#1575)

This commit is contained in:
Jonas L 2022-02-08 10:14:59 +01:00 committed by GitHub
parent b43cb62a2e
commit ae5746d26d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ class SystemstatusController extends Zend_Controller_Action
Zend_Layout::getMvcInstance()->assign('parent_page', 'Settings');
$partitions = Application_Model_Systemstatus::GetDiskInfo();
$this->view->status = new StdClass();
$this->view->status = new stdClass();
$this->view->status->partitions = $partitions;
$this->view->version = $this->version;
}