for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Claudsonm\BoletoWinner;
use Claudsonm\BoletoWinner\Converters\BoletoConverter;
use Claudsonm\BoletoWinner\Converters\Converter;
use Claudsonm\BoletoWinner\Validators\BoletoValidator;
use Claudsonm\BoletoWinner\Validators\Validator;
class Boleto extends Bill
{
/**
* {@inheritdoc}
*/
protected function useConverter(): Converter
return new BoletoConverter();
}
protected function useValidator(): Validator
return new BoletoValidator();