PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/sc1buiq6159/smile.formagloba.fr/wp-content/plugins/site-reviews/plugin/
Server: Linux apophis.o2switch.net 4.18.0-553.111.1.lve.el8.x86_64 #1 SMP Fri Mar 13 13:42:17 UTC 2026 x86_64
IP: 109.234.164.184
Choose File :

Url:
Dir : /home/sc1buiq6159/smile.formagloba.fr/wp-content/plugins/site-reviews/plugin/Deprecated.php

<?php

namespace GeminiLabs\SiteReviews;

use GeminiLabs\SiteReviews\Helpers\Arr;

trait Deprecated
{
    protected array $mappedDeprecatedMethods = [];

    public function __call(string $oldMethod, $args)
    {
        $newMethod = Arr::get($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);
    }
}