Files
ticketbeast/app/Billing/Charge.php
2017-03-17 12:19:35 -04:00

24 lines
322 B
PHP

<?php
namespace App\Billing;
class Charge
{
private $data;
public function __construct($data)
{
$this->data = $data;
}
public function amount()
{
return $this->data['amount'];
}
public function cardLastFour()
{
return $this->data['card_last_four'];
}
}