gnusocial.rocks/soc/2020/daily_report/archive/app/src/ViewFunctions/ViewFunction.php

20 lines
287 B
PHP

<?php
namespace App\ViewFunctions;
abstract class ViewFunction
{
/** @var string The function name */
protected $name = '';
/**
* Get the function name.
*
* @return string
*/
public function name(): string
{
return $this->name;
}
}