Class FeatureSet

Summary

Fully Qualified Name: Zend\Db\TableGateway\Feature\FeatureSet

Description

Methods

Name Description Defined By
__construct() FeatureSet
addFeature() FeatureSet
addFeatures() FeatureSet
apply() FeatureSet
callMagicCall() Call method of on added feature as though it were a local method FeatureSet
callMagicGet() FeatureSet
callMagicSet() FeatureSet
canCallMagicCall() Is the method requested available in one of the added features FeatureSet
canCallMagicGet() FeatureSet
canCallMagicSet() FeatureSet
getFeatureByClassName() FeatureSet
setTableGateway() FeatureSet

Method Details

__construct()

Parameter Name Type Description
$features

Returns: void

addFeature()

Parameter Name Type Description
$feature \AbstractFeature

Returns: self Provides a fluent interface

addFeatures()

Parameter Name Type Description
$features array

Returns: self Provides a fluent interface

apply()

Parameter Name Type Description
$method
$args

Returns: void

callMagicCall()

Call method of on added feature as though it were a local method

Parameter Name Type Description
$method string
$arguments array

Returns: mixed

callMagicGet()

Parameter Name Type Description
$property string

Returns: mixed

callMagicSet()

Parameter Name Type Description
$value
$property
$value

Returns: mixed

canCallMagicCall()

Is the method requested available in one of the added features

Parameter Name Type Description
$method string

Returns: bool

canCallMagicGet()

Parameter Name Type Description
$property string

Returns: bool

canCallMagicSet()

Parameter Name Type Description
$property string

Returns: bool

getFeatureByClassName()

Parameter Name Type Description
$featureClassName

Returns: void

setTableGateway()

Parameter Name Type Description
$tableGateway \AbstractTableGateway

Returns: self Provides a fluent interface

Top