adrema/app/Form/Presenters/DefaultPresenter.php

16 lines
224 B
PHP
Raw Normal View History

2024-02-09 23:22:49 +01:00
<?php
namespace App\Form\Presenters;
class DefaultPresenter extends Presenter
{
/**
* @param mixed $value
*/
public function present($value): string
{
return ((string) $value) ?: '';
}
}