Fix php style

This commit is contained in:
osaajani 2020-01-17 18:19:25 +01:00
parent 461bd9c98d
commit b8bd067dc7
59 changed files with 2307 additions and 1868 deletions

View file

@ -14,8 +14,12 @@ namespace models;
class Command extends StandardModel
{
/**
* Return table name
* @return string
* Return table name.
*
* @return string
*/
protected function get_table_name() : string { return 'command'; }
protected function get_table_name(): string
{
return 'command';
}
}