BestowalRecommendation
extends BaseEntity
in package
BestowalRecommendation Entity - Join record linking a bestowal to a recommendation.
Table of Contents
Properties
- $bestowal : Bestowal
- $bestowal_id : int
- $branch_id : int|null
- $created : DateTime
- $id : int
- $modified : DateTime|null
- $recommendation : Recommendation
- $recommendation_id : int
- $_accessible : array<string, bool>
Methods
- getBranchId() : int|null
- Get the branch ID for authorization checks.
Properties
$bestowal
public
Bestowal
$bestowal
$bestowal_id
public
int
$bestowal_id
$branch_id
public
int|null
$branch_id
Associated branch ID (when applicable)
$created
public
DateTime
$created
$id
public
int
$id
$modified
public
DateTime|null
$modified
Last modification timestamp
$recommendation
public
Recommendation
$recommendation
$recommendation_id
public
int
$recommendation_id
$_accessible
protected
array<string, bool>
$_accessible
= ['bestowal_id' => true, 'recommendation_id' => true, 'created' => true, 'bestowal' => true, 'recommendation' => true]
Methods
getBranchId()
Get the branch ID for authorization checks.
public
getBranchId() : int|null
Child classes should override for complex branch relationships.
Return values
int|null —The branch ID, or null if no association