Level 37
Which class isn't found?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Why I got an error "Class not found" ?
code :
<?php namespace Acme\Billing;
use Stripe;
use Stripe_Charge;
use Config;
class StripeBilling implements BillingInterface {
public function __construct()
{
Stripe::setApiKey(Config::get('stripe.secret_key'));
}
I installed these classess with composer..
Please or to participate in this conversation.