for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: igor
* Date: 11/06/18
* Time: 17:24
*/
namespace AdminWeb\PayerPagSeguro\States;
class CancelledState extends AbstractState
{
const STATE = self::CANCELLED;
const CODE = 7;
public function __toString()
return self::STATE;
}