for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace hiqdev\php\billing\tests\support\customer;
use hiqdev\php\billing\customer\Customer;
class Seller extends Customer
{
public function __construct()
parent::__construct(1, 'seller');
}