mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-07-27 06:40:43 +02:00
9 lines
168 B
PHP
9 lines
168 B
PHP
<?php
|
|
|
|
namespace RobThree\Auth\Providers\Time;
|
|
|
|
class LocalMachineTimeProvider implements ITimeProvider {
|
|
public function getTime() {
|
|
return time();
|
|
}
|
|
} |