You are here

public function License::getRenewedTime in Commerce License 8.2

Gets the renewal timestamp.

Return value

int The renewal timestamp.

Overrides LicenseInterface::getRenewedTime

File

src/Entity/License.php, line 208

Class

License
Defines the License entity.

Namespace

Drupal\commerce_license\Entity

Code

public function getRenewedTime() {
  return $this
    ->get('renewed')->value;
}