BConnect Business - Reference PHP

Feature
in package

Attributes
#[Entity]
$repositoryClass: \App\Repository\FeatureRepository::class

Table of Contents

Properties

$description  : string|null
$id  : int|null
$name  : string|null
$posFeature  : PosFeature|null
$pricing  : PricingPlan|null

Methods

getDescription()  : string|null
getId()  : int|null
getName()  : string|null
getPosFeature()  : PosFeature|null
getPricing()  : PricingPlan|null
setDescription()  : static
setName()  : static
setPosFeature()  : static
setPricing()  : static

Properties

$description

private string|null $description = null
Attributes
#[Column]
$length: 255
$nullable: true
#[Groups]
['feature:read', 'pricing:read']

$id

private int|null $id = null
Attributes
#[Column]
#[GeneratedValue]
#[Id]

$name

private string|null $name = null
Attributes
#[Column]
$length: 255
#[Groups]
['feature:read', 'pricing:read']

$posFeature

private PosFeature|null $posFeature = null
Attributes
#[Groups]
['feature:read', 'pricing:read']
#[ManyToOne]
$inversedBy: 'features'

$pricing

private PricingPlan|null $pricing = null
Attributes
#[Groups]
['feature:read']
#[JoinColumn]
$nullable: false
#[ManyToOne]
$cascade: ['persist']
$inversedBy: 'features'

Methods

getDescription()

public getDescription() : string|null
Return values
string|null

getId()

public getId() : int|null
Return values
int|null

getName()

public getName() : string|null
Return values
string|null

setDescription()

public setDescription(string|null $description) : static
Parameters
$description : string|null
Return values
static

setName()

public setName(string $name) : static
Parameters
$name : string
Return values
static

setPosFeature()

public setPosFeature(PosFeature|null $posFeature) : static
Parameters
$posFeature : PosFeature|null
Return values
static
On this page

Search results