Steve White ae9ece5266 *** Initial Commit of Files for APRS.TO Backend Administration Panel ***
This code is non-functional at this point.
2025-02-02 15:53:34 -05:00

20 lines
352 B
PHP

<?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);
}
}