mirror of
https://github.com/Lukas0025/YAGS.git
synced 2025-04-10 17:32:17 +01:00
11 lines
280 B
PHP
11 lines
280 B
PHP
<?php
|
|
namespace API\station;
|
|
|
|
function APIinfo($params) {
|
|
|
|
$station = new \DAL\station()
|
|
|
|
$station->find("apiKey", $params["key"])
|
|
|
|
return ["id" => $station->id->get(), "name" => $station->name->get(), "locator" => $station->locator->get()];
|
|
} |