adrema/app/Form/Presenters/DefaultPresenter.php

16 lines
224 B
PHP

<?php
namespace App\Form\Presenters;
class DefaultPresenter extends Presenter
{
/**
* @param mixed $value
*/
public function present($value): string
{
return ((string) $value) ?: '';
}
}