123456789101112131415161718192021222324 |
- <?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));
- }
- }
|