master

laravel/framework

Last updated at: 29/12/2023 09:21

DeferringDisplayableValue.php

TLDR

This file defines an interface DeferringDisplayableValue in the Illuminate\Contracts\Support namespace. The interface contains a method resolveDisplayableValue().

Methods

resolveDisplayableValue

This method is defined in the DeferringDisplayableValue interface. It resolves the displayable value that the class is deferring. The method returns an instance of \Illuminate\Contracts\Support\Htmlable or a string.

<?php

namespace Illuminate\Contracts\Support;

interface DeferringDisplayableValue
{
    /**
     * Resolve the displayable value that the class is deferring.
     *
     * @return \Illuminate\Contracts\Support\Htmlable|string
     */
    public function resolveDisplayableValue();
}