HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/testingff/public_html/fdfctr/wp-content/plugins/site-reviews/plugin/Deprecated.php
<?php

namespace GeminiLabs\SiteReviews;

use BadMethodCallException;
use GeminiLabs\SiteReviews\Helpers\Arr;
use ReflectionClass;

trait Deprecated
{
    /**
     * @var array
     */
    protected $mappedDeprecatedMethods;

    public function __call($oldMethod, $args)
    {
        $newMethod = Arr::get(Arr::consolidate($this->mappedDeprecatedMethods), $oldMethod);
        if (empty($newMethod) || !method_exists($this, $newMethod)) {
            throw new BadMethodCallException("Method [$oldMethod] does not exist.");
        }
        $className = (new ReflectionClass($this))->getShortName();
        $message = sprintf(
            _x('The [%s] method has been deprecated and will be soon be removed, please use the [%s] method instead.', 'admin-text', 'site-reviews'),
            sprintf('%s::%s()', $className, $oldMethod),
            sprintf('%s::%s()', $className, $newMethod)
        );
        glsr()->append('deprecated', $message);
        return call_user_func_array([$this, $newMethod], $args);
    }
}