123456789101112131415161718192021222324252627 |
- <?php
- namespace refill;
- use mtopcard;
- use Log;
- abstract class IRefillOil extends IRefill
- {
- public function __construct($cfgs)
- {
- parent::__construct($cfgs);
- foreach ($cfgs['card_type'] as $ctype)
- {
- $ctype = strtolower($ctype);
- if ($ctype == "petrochina") {
- $this->mCardType[] = mtopcard\PetroChinaCard;
- } elseif ($ctype == "sinopec") {
- $this->mCardType[] = mtopcard\SinopecCard;
- } else {
- Log::record("Oil Provider has no name", Log::ERR);
- }
- }
- }
- }
|