<?php

/**
 * @package    Grav\Common
 *
 * @copyright  Copyright (c) 2015 - 2025 Trilby Media, LLC. All rights reserved.
 * @license    MIT License; see LICENSE file for details.
 */

namespace Grav\Common;

/**
 * @deprecated 1.4 Use Grav::instance() instead.
 */
trait GravTrait
{
    /** @var Grav */
    protected static $grav;

    /**
     * @return Grav
     * @deprecated 1.4 Use Grav::instance() instead.
     */
    public static function getGrav()
    {
        user_error(__TRAIT__ . ' is deprecated since Grav 1.4, use Grav::instance() instead', E_USER_DEPRECATED);

        if (null === self::$grav) {
            self::$grav = Grav::instance();
        }

        return self::$grav;
    }
}