HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /var/www/gosurya-id/wp-content/plugins/akeebabackupwp/app/Awf/Pagination/Object.php
<?php
/**
 * @package   awf
 * @copyright Copyright (c)2014-2021 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU GPL version 3 or later
 */

namespace Awf\Pagination;

/**
 * This is a backwards compatibility class. It should not be used in PHP 7.2 and later.
 */
class Object extends PaginationObject
{
	public function __construct($text, $base = null, $link = null, $active = false)
	{
		trigger_error(sprintf("Using %s is deprecated and will cause fatal errors in PHP 7.2 and later. Update your code.", __CLASS__), E_USER_NOTICE);

		parent::__construct($text, $base, $link, $active);
	}

}