Neomerx\JsonApi\Contracts\Encoder\Parameters\ParametersAnalyzerInterface::getParameters PHP Méthode

getParameters() public méthode

Get parameters.
public getParameters ( ) : EncodingParametersInterface
Résultat EncodingParametersInterface
    public function getParameters();

Usage Example

 /**
  * @inheritdoc
  */
 public function getFieldSet($type)
 {
     settype($type, 'string');
     if (array_key_exists($type, $this->fieldSetCache) === false) {
         $fieldSet = $this->parameterAnalyzer->getParameters()->getFieldSet($type);
         $this->fieldSetCache[$type] = $fieldSet === null ? null : array_flip(array_values($fieldSet));
     }
     return $this->fieldSetCache[$type];
 }
All Usage Examples Of Neomerx\JsonApi\Contracts\Encoder\Parameters\ParametersAnalyzerInterface::getParameters