Documentation

Installation extends SubDecision
in package

Installation as board member.

Attributes
#[AssociationOverrides]
[new \Doctrine\ORM\Mapping\AssociationOverride(name: 'member', joinColumns: new \Doctrine\ORM\Mapping\JoinColumn(name: 'lidnr', referencedColumnName: 'lidnr', nullable: false))]
#[Entity]

Table of Contents

Properties

$boardMember  : BoardMember
Board member reference.
$content  : string
Content.
$date  : DateTime
The date at which the installation is in effect.
$decision  : Decision
Decision.
$decision_number  : int
Decision number.
$decision_point  : int
Decision point.
$discharge  : Discharge|null
Discharge.
$function  : string
Function in the board.
$meeting_number  : int
Meeting number.
$meeting_type  : MeetingTypes
Meeting type.
$member  : Member|null
The member involved in this sub-decision.
$release  : Release|null
Release.
$sequence  : int
Sub decision sequence number.

Methods

getBoardMember()  : BoardMember
Get the board member decision.
getContent()  : string
Get the content.
getDate()  : DateTime
Get the date.
getDecision()  : Decision
Get the decision.
getDecisionNumber()  : int
Get the decision number.
getDecisionPoint()  : int
Get the decision point number.
getDischarge()  : Discharge|null
Get the discharge.
getFunction()  : string
Get the function.
getMeetingNumber()  : int
Get the meeting number.
getMeetingType()  : MeetingTypes
Get the meeting type.
getMember()  : Member
Get the member.
getRelease()  : Release|null
Get the release.
getSequence()  : int
Get the sequence number.
setContent()  : void
Set the content.
setDate()  : void
Set the date.
setDecision()  : void
Set the decision.
setFunction()  : void
Set the function.
setMember()  : void
Set the member.
setSequence()  : void
Set the sequence number.
toGdprArray()  : SubDecisionGdprArrayType

Properties

$boardMember

Board member reference.

protected BoardMember $boardMember
Attributes
#[OneToOne]
$targetEntity: \Decision\Model\BoardMember::class
$mappedBy: 'installationDec'

$content

Content.

protected string $content
Attributes
#[Column]
$type: 'text'

$date

The date at which the installation is in effect.

protected DateTime $date
Attributes
#[Column]
$type: 'date'

$decision

Decision.

protected Decision $decision
Attributes
#[JoinColumn]
$name: 'meeting_type'
$referencedColumnName: 'meeting_type'
#[JoinColumn]
$name: 'meeting_number'
$referencedColumnName: 'meeting_number'
#[JoinColumn]
$name: 'decision_point'
$referencedColumnName: 'point'
#[JoinColumn]
$name: 'decision_number'
$referencedColumnName: 'number'
#[ManyToOne]
$targetEntity: \Decision\Model\Decision::class
$inversedBy: 'subdecisions'

$decision_number

Decision number.

protected int $decision_number

NOTE: This is a hack to make the decision a primary key here.

Attributes
#[Column]
$type: 'integer'
#[Id]

$decision_point

Decision point.

protected int $decision_point

NOTE: This is a hack to make the decision a primary key here.

Attributes
#[Column]
$type: 'integer'
#[Id]

$discharge

Discharge.

protected Discharge|null $discharge = null
Attributes
#[OneToOne]
$targetEntity: \Decision\Model\SubDecision\Board\Discharge::class
$mappedBy: 'installation'

$function

Function in the board.

protected string $function
Attributes
#[Column]
$type: 'string'

$meeting_number

Meeting number.

protected int $meeting_number

NOTE: This is a hack to make the decision a primary key here.

Attributes
#[Column]
$type: 'integer'
#[Id]

$meeting_type

Meeting type.

protected MeetingTypes $meeting_type

NOTE: This is a hack to make the decision a primary key here.

Attributes
#[Column]
$type: 'string'
$enumType: \Decision\Model\Enums\MeetingTypes::class
#[Id]

$member

The member involved in this sub-decision.

protected Member|null $member = null

Not all sub-decisions require this, as such it is nullable. However, sub-decisions that need the guarantee that this is not null or need to specify an inverse side can do so using an association override.

Attributes
#[JoinColumn]
$name: 'lidnr'
$referencedColumnName: 'lidnr'
$nullable: true
#[ManyToOne]
$targetEntity: \Decision\Model\Member::class

$release

Release.

protected Release|null $release = null
Attributes
#[OneToOne]
$targetEntity: \Decision\Model\SubDecision\Board\Release::class
$mappedBy: 'installation'

$sequence

Sub decision sequence number.

protected int $sequence
Attributes
#[Column]
$type: 'integer'
#[Id]

Methods

getContent()

Get the content.

public getContent() : string
Return values
string

getDate()

Get the date.

public getDate() : DateTime
Return values
DateTime

getDecisionNumber()

Get the decision number.

public getDecisionNumber() : int
Return values
int

getDecisionPoint()

Get the decision point number.

public getDecisionPoint() : int
Return values
int

getFunction()

Get the function.

public getFunction() : string
Return values
string

getMeetingNumber()

Get the meeting number.

public getMeetingNumber() : int
Return values
int

getMember()

Get the member.

public getMember() : Member
Tags
psalm-suppress

InvalidNullableReturnType

Attributes
#[Override]
Return values
Member

getSequence()

Get the sequence number.

public getSequence() : int
Return values
int

setContent()

Set the content.

public setContent(string $content) : void
Parameters
$content : string

setDate()

Set the date.

public setDate(DateTime $date) : void
Parameters
$date : DateTime

setFunction()

Set the function.

public setFunction(string $function) : void
Parameters
$function : string

setSequence()

Set the sequence number.

public setSequence(int $sequence) : void
Parameters
$sequence : int

toGdprArray()

public toGdprArray() : SubDecisionGdprArrayType
Return values
SubDecisionGdprArrayType

        
On this page

Search results