raspisms/models/Command.php

24 lines
451 B
PHP
Raw Normal View History

2019-10-29 14:57:13 +01:00
<?php
/*
2019-11-10 17:48:54 +01:00
* This file is part of RaspiSMS.
*
2019-11-10 17:48:54 +01:00
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
*
2019-11-10 17:48:54 +01:00
* This source file is subject to the GPL-3.0 license that is bundled
* with this source code in the file LICENSE.
*/
namespace models;
class Command extends StandardModel
2019-10-29 14:57:13 +01:00
{
/**
2020-01-17 18:19:25 +01:00
* Return table name.
*/
2020-01-17 18:19:25 +01:00
protected function get_table_name(): string
{
return 'command';
}
2019-10-29 14:57:13 +01:00
}