This commit is contained in:
2023-06-16 21:44:35 -04:00
parent b553ac403e
commit adad8cea81
18 changed files with 360 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace ProVM\Service;
class Remote
{
public function __construct(protected Ipify $ipService, protected Repository $dbService) {}
public function update(): void
{
$ip = $this->ipService->get();
$this->dbService->update($ip);
}
}