fix phpcs

This commit is contained in:
Frédéric FRANCE 2021-01-25 16:23:09 +01:00
parent ca1340b5ed
commit dcc6c8b5b0
No known key found for this signature in database
GPG Key ID: 06809324E4B2ABC1
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ class WorkstationResource extends CommonObject
/**
* @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.
*/
public $fields = array(
public $fields = array(
'fk_workstation' => array ('type' => 'integer'),
'fk_resource' => array ('type' => 'integer')
);
@ -45,12 +45,12 @@ class WorkstationResource extends CommonObject
/**
* @var int ID of workstation
*/
public $fk_workstation;
public $fk_workstation;
/**
* @var int ID of dolresource
*/
public $fk_resource;
public $fk_resource;
/**

View File

@ -36,7 +36,7 @@ class WorkstationUserGroup extends CommonObject
/**
* @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.
*/
public $fields = array(
public $fields = array(
'fk_workstation' => array ('type' => 'integer'),
'fk_usergroup' => array ('type' => 'integer')
);