| Server IP : 104.21.84.107 / Your IP : 104.23.197.209 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/pregrados/licenciatura-es-in/libraries/vendor/joomla/registry/src/ |
Upload File : |
<?php
/**
* Part of the Joomla Framework Registry Package
*
* @copyright Copyright (C) 2015 Open Source Matters, Inc.
* @license GNU General Public License version 2 or later; see LICENSE
*/
namespace Joomla\Registry;
/**
* Interface defining a format object
*
* @since 1.5.0
* @since 1.5.0 Deprecated `AbstractRegistryFormat` in favor of the `FormatInterface`.
* @since 2.0.0 Deprecated `AbstractRegistryFormat`. Format objects must now implement the `FormatInterface`.
*/
interface FormatInterface
{
/**
* Converts an object into a formatted string.
*
* @param object $object Data Source Object.
* @param array $options An array of options for the formatter.
*
* @return string Formatted string.
*
* @since 1.5.0
* @since 2.0.0 The `FormatInterface::objectToString()` method typehints the `$options` argument as an array;
* this was not enforced before 2.0.0 with `AbstractRegistryFormat::objectToString()`.
*/
public function objectToString($object, array $options = []);
/**
* Converts a formatted string into an object.
*
* @param string $data Formatted string
* @param array $options An array of options for the formatter.
*
* @return object Data Object
*
* @since 1.5.0
*/
public function stringToObject($data, array $options = []);
}