Удалить 'htdocs/includes/models/sender.class.php'

This commit is contained in:
homyak 2024-02-24 00:27:43 +03:00
parent 0376a1f354
commit 295a47bba7
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
<?php
class Sender extends Model
{
public function __construct($id)
{
parent::__construct($id);
}
/**
* Get sender station
*
* @return Station
*/
public function getSenderStationObject()
{
return StationRepository::getInstance()->getObjectByNameAndSenderId($this->name, $this->id);
}
}