for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Brazanation\States;
class Para extends State
{
const CODE = 15;
const FULL_NAME = 'Pará';
const SHORT_NAME = 'PA';
const TIMEZONE = 'America/Belem';
public function __construct()
parent::__construct(
self::FULL_NAME,
self::SHORT_NAME,
self::CODE,
self::TIMEZONE
);
}