<?php namespace App\Billing; class Stripe { protected $key; public function __construct(string $key) { $this->key = $key; } }