IRefillPhone.php 161 B

123456789101112
  1. <?php
  2. namespace refill;
  3. abstract class IRefillPhone extends IRefill
  4. {
  5. public function __construct($cfgs)
  6. {
  7. parent::__construct($cfgs);
  8. }
  9. }