4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-15 05:36:37 +00:00
AzuraCast/src/Service/SftpGo.php
Buster "Silver Eagle" Neece 719ded0ff2
Add sftpgo to Ansible.
2022-05-27 23:32:54 -05:00

16 lines
247 B
PHP

<?php
declare(strict_types=1);
namespace App\Service;
use App\Entity\Station;
class SftpGo
{
public static function isSupportedForStation(Station $station): bool
{
return $station->getMediaStorageLocation()->isLocal();
}
}