for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Eduardokum\CorreiosPhp\Config;
use Eduardokum\CorreiosPhp\Contracts\Config\Config as ConfigContract;
class Production extends Config implements ConfigContract
{
public function __construct()
parent::__construct();
$this->environment = 'production';
}