Formatando o código com php-cs-fixer

laravel-11
jtfnetoo 3 years ago
parent 88e65b5f1e
commit 8b7348cfbc

@ -4,8 +4,8 @@ namespace Ae3\JasperServer\Laravel\Integrator\app\Enums;
class ContentDispositionEnum
{
const INLINE = "inline";
const ATTACHMENT = "attachment";
public const INLINE = "inline";
public const ATTACHMENT = "attachment";
/**
* @return array

@ -4,14 +4,14 @@ namespace Ae3\JasperServer\Laravel\Integrator\app\Enums;
class ReportFormatEnum
{
const PDF = "pdf";
const HTML = "html";
const XML = "xml";
const CSV = "csv";
const DOCX = "docx";
const ODT = "odt";
const ODS = "ods";
const XLSX = "xlsx";
public const PDF = "pdf";
public const HTML = "html";
public const XML = "xml";
public const CSV = "csv";
public const DOCX = "docx";
public const ODT = "odt";
public const ODS = "ods";
public const XLSX = "xlsx";
/**
* @return array

@ -280,7 +280,7 @@ class JasperServerRequestService implements JasperServerRequestServiceContract
* @return string
*/
private function appendFormatExtension(string $filename): string
{
return $filename . '.' . $this->format;
}
{
return $filename . '.' . $this->format;
}
}

Loading…
Cancel
Save