<?php
namespace App\Model;

class Call {
    public array $user;
    public string $cancel_time;
    public string $number;
    public string $status;
    public int $wait;
    public int $attempt;
    public string $meta;
    

    public function __construct($number, $status){
	$this->number = $number;
	$this->status = $status;
    }

    public function get_close_time(){
	return explode(" ", $this->cancel_time)[0];
    }
    
}
