forked from GNUsocial/gnusocial.rocks
20 lines
287 B
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;
|
|
}
|
|
}
|