shell bypass 403
<?php
declare(strict_types=1);
namespace Square;
/**
* Environments available for API
*/
class Environment
{
public const PRODUCTION = 'production';
public const SANDBOX = 'sandbox';
public const CUSTOM = 'custom';
}