0 follower

Interface Yiisoft\Yii\DataView\ValuePresenter\ValuePresenterInterface

Implemented byYiisoft\Yii\DataView\ValuePresenter\SimpleValuePresenter

A value presenter is responsible for presenting a given value as a string.

Public Methods

Hide inherited methods

Method Description Defined By
present() Formats the given value into a string. Yiisoft\Yii\DataView\ValuePresenter\ValuePresenterInterface

Method Details

Hide inherited methods

present() public abstract method

Formats the given value into a string.

public abstract string|\Stringable present ( mixed $value )
$value mixed

The value to present.

return string|\Stringable

The presented value.

                public function present(mixed $value): string|Stringable;