Interface WriterInterface

Summary

Fully Qualified Name: Zend\Config\Writer\WriterInterface

Description

Methods

Name Description Defined By
toFile() Write a config object to a file. WriterInterface
toString() Write a config object to a string. WriterInterface

Method Details

toFile()

Write a config object to a file.

Parameter Name Type Description
$filename string
$config mixed
$exclusiveLock bool

Returns: void

toString()

Write a config object to a string.

Parameter Name Type Description
$config mixed

Returns: string

Top