invoiceninja/app/DataMapper/Analytics/LoginFailure.php

41 lines
622 B
PHP
Raw Normal View History

2020-04-30 22:33:57 +10:00
<?php
namespace App\DataMapper\Analytics;
class LoginFailure
{
/**
* The type of Sample.
*
* Monotonically incrementing counter
*
* - counter
*
* @var string
*/
public $type = 'counter';
2020-04-30 22:33:57 +10:00
/**
* The name of the counter.
* @var string
*/
public $name = 'login.failure';
2020-04-30 22:33:57 +10:00
/**
* The datetime of the counter measurement.
*
* date("Y-m-d H:i:s")
*
* @var DateTime
*/
public $datetime;
2020-04-30 22:33:57 +10:00
/**
* The increment amount... should always be
* set to 0.
*
* @var int
*/
public $metric = 0;
}