You are here

public function LinkCheckerLink::getLastCheckTime in Link checker 8

Gets last time when the link was checked.

Return value

int Timestamp.

Overrides LinkCheckerLinkInterface::getLastCheckTime

File

src/Entity/LinkCheckerLink.php, line 164

Class

LinkCheckerLink
Defines the linkcheckerlink type entity.

Namespace

Drupal\linkchecker\Entity

Code

public function getLastCheckTime() {
  return $this
    ->get('last_check')->value;
}