Stripe.php 154 B

1234567891011121314
  1. <?php
  2. namespace App\Billing;
  3. class Stripe
  4. {
  5. protected $key;
  6. public function __construct(string $key)
  7. {
  8. $this->key = $key;
  9. }
  10. }