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

20 lines
287 B
PHP
Raw Normal View History

2021-03-23 13:36:33 +00:00
<?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;
}
}