Fix codestyle.
This commit is contained in:
parent
86b656a25c
commit
714128f614
|
@ -149,8 +149,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -102,8 +102,6 @@ namespace controllers\internals;
|
|||
*
|
||||
* @param int $id_user : User id
|
||||
* @param string $condition : Condition string to verify
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function get_contacts_for_condition_and_user(int $id_user, string $condition): array
|
||||
{
|
||||
|
@ -130,8 +128,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -343,8 +343,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -58,8 +58,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -129,8 +129,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -129,8 +129,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -99,8 +99,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -264,8 +264,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -13,9 +13,9 @@ namespace controllers\internals;
|
|||
|
||||
use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
|
||||
|
||||
/**
|
||||
* Class to analyse rules used by conditional groups.
|
||||
*/
|
||||
/**
|
||||
* Class to analyse rules used by conditional groups.
|
||||
*/
|
||||
class Ruler extends \descartes\InternalController
|
||||
{
|
||||
private $expression_language;
|
||||
|
|
|
@ -418,8 +418,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -210,8 +210,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -55,8 +55,6 @@ namespace controllers\internals;
|
|||
* @param int $id_user : user id
|
||||
* @param string $name : setting name
|
||||
* @param mixed $value : value of the setting
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function create(int $id_user, string $name, $value): bool
|
||||
{
|
||||
|
@ -90,8 +88,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -66,8 +66,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -137,8 +137,6 @@ namespace controllers\internals;
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
abstract protected function get_model(): \descartes\Model;
|
||||
}
|
||||
|
|
|
@ -137,8 +137,6 @@ class Webhook extends StandardController
|
|||
|
||||
/**
|
||||
* Get the model for the Controller.
|
||||
*
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
protected function get_model(): \descartes\Model
|
||||
{
|
||||
|
|
|
@ -14,9 +14,9 @@ namespace controllers\publics;
|
|||
use Monolog\Handler\StreamHandler;
|
||||
use Monolog\Logger;
|
||||
|
||||
/**
|
||||
* Controller of callback pages, like sms status update notification.
|
||||
*/
|
||||
/**
|
||||
* Controller of callback pages, like sms status update notification.
|
||||
*/
|
||||
class Callback extends \descartes\Controller
|
||||
{
|
||||
private $logger;
|
||||
|
|
|
@ -66,7 +66,6 @@ abstract class AbstractDaemon
|
|||
/**
|
||||
* Used to handle properly SIGINT, SIGTERM, SIGCHLD and SIGHUP.
|
||||
*
|
||||
* @param int $signal
|
||||
* @param mixed $signinfo
|
||||
*/
|
||||
protected function handle_signal(int $signal, $signinfo)
|
||||
|
|
|
@ -68,6 +68,7 @@ class Phone extends AbstractDaemon
|
|||
if ((microtime(true) - $this->last_message_at) > $this->max_inactivity)
|
||||
{
|
||||
posix_kill(getmypid(), SIGTERM); //Send exit signal to the current process
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,8 +15,6 @@ namespace models;
|
|||
{
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -28,8 +28,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -41,8 +41,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -28,8 +28,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -75,8 +75,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -241,8 +241,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -40,8 +40,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -257,8 +257,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -248,8 +248,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -167,8 +167,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -29,8 +29,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -28,8 +28,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
|
@ -190,8 +190,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
abstract protected function get_table_name(): string;
|
||||
}
|
||||
|
|
|
@ -31,8 +31,6 @@ namespace models;
|
|||
|
||||
/**
|
||||
* Return table name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_table_name(): string
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue