<?php
namespace App\ServicePay\TransCard;
abstract class BaseCard
{
protected $msg=null;
abstract public function message($msg);
abstract public function showInfo();
}