Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Setup/ |
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Setup/JsonPersistor.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Setup; /** * Persist json files. */ class JsonPersistor { /** * Persist data to json file. * * @param array $data * @param string $path * @return bool */ public function persist(array $data, $path) { return file_put_contents($path, json_encode($data, JSON_PRETTY_PRINT)); } }