Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| SignInLog | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace BuyerKiosk\Core; |
| 4 | |
| 5 | /** |
| 6 | * SignInLog |
| 7 | * |
| 8 | * Tracks customer sign-in activity and timing. |
| 9 | * |
| 10 | * @package BuyerKiosk\Core |
| 11 | */ |
| 12 | class SignInLog { |
| 13 | private $id; |
| 14 | public $typeNum; |
| 15 | public $customerID; |
| 16 | public $infoTime; |
| 17 | public $questionTime; |
| 18 | public $time; |
| 19 | public $wasNewCustomer; |
| 20 | |
| 21 | public function __construct() { |
| 22 | |
| 23 | } |
| 24 | } |