Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
WriteInterface.php
Go to the documentation of this file.
1 <?php
7 
12 interface WriteInterface extends ReadInterface
13 {
21  public function write($data);
22 
32  public function writeCsv(array $data, $delimiter = ',', $enclosure = '"');
33 
40  public function flush();
41 
48  public function lock($lockMode = \LOCK_EX);
49 
55  public function unlock();
56 }
writeCsv(array $data, $delimiter=',', $enclosure='"')