?
Current Path : /home1/savoy/public_html/wp-content/plugins/duplicator/src/Libs/Snap/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/wp-content/plugins/duplicator/src/Libs/Snap/JsonSerializable.php |
<?php /** * * @package Duplicator * @copyright (c) 2021, Snapcreek LLC * * this file isn't under PSR4 autoloader standard */ if (!interface_exists('JsonSerializable')) { if (!defined('WP_JSON_SERIALIZE_COMPATIBLE')) { define('WP_JSON_SERIALIZE_COMPATIBLE', true); } /** * JsonSerializable interface. * * Compatibility shim for PHP <5.4 */ interface JsonSerializable // phpcs:ignore { /** * Serialize object * * @return string */ public function jsonSerialize(); } }