Editing: ReceiptInterface.php
<?php namespace Shetabit\Multipay\Contracts; use Carbon\Carbon; interface ReceiptInterface { /** * Retrieve driver's name * * @return string */ public function getDriver() : string; /** * Retrieve payment reference code. * * @return string */ public function getReferenceId() : string; /** * Retrieve payment date * * @return Carbon */ public function getDate() : Carbon; }
Save
Back