Skip to content

Commit

Permalink
#588 [Class] fix: remove type for $isextrafieldmanaged
Browse files Browse the repository at this point in the history
  • Loading branch information
evarisk-micka committed Jun 21, 2024
1 parent 373bd22 commit 9f93f65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions class/timesheet.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class TimeSheet extends SaturneObject
/**
* @var int Does object support extrafields ? 0 = No, 1 = Yes.
*/
public int $isextrafieldmanaged = 1;
public $isextrafieldmanaged = 1;

/**
* @var string Name of icon for timesheet. Must be a 'fa-xxx' fontawesome code (or 'fa-xxx_fa_color_size') or 'timesheet@dolisirh' if picto is file 'img/object_timesheet.png'.
Expand Down Expand Up @@ -203,12 +203,12 @@ class TimeSheet extends SaturneObject
/**
* @var int User ID.
*/
public int $fk_user_creat;
public $fk_user_creat;

/**
* @var int|null User ID.
*/
public ?int $fk_user_modif;
public $fk_user_modif;

/**
* @var int|string|null Project ID.
Expand Down Expand Up @@ -393,7 +393,7 @@ class TimeSheetLine extends SaturneObject
/**
* @var int Does object support extrafields ? 0 = No, 1 = Yes.
*/
public int $isextrafieldmanaged = 1;
public $isextrafieldmanaged = 1;

/**
* 'type' field format:
Expand Down

0 comments on commit 9f93f65

Please sign in to comment.