for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Claudsonm\BoletoWinner;
use Claudsonm\BoletoWinner\Converters\ConvenioConverter;
use Claudsonm\BoletoWinner\Converters\Converter;
use Claudsonm\BoletoWinner\Validators\ConvenioValidator;
use Claudsonm\BoletoWinner\Validators\Validator;
class Convenio extends Bill
{
const USES_MODULE_10 = [6, 7]; // TODO pick better name
const AVAILABLE_CODES = [6, 7, 8, 9]; // TODO pick better name
/**
* {@inheritdoc}
*/
protected function useConverter(): Converter
return new ConvenioConverter();
}
protected function useValidator(): Validator
return new ConvenioValidator();