Skip to content

Commit d20815e

Browse files
committed
fix: changed vidibility to private
All constants at these scopes are private and when was executed cs:fix, was accidentally defined as public. Signed-off-by: Vitor Mattos <[email protected]>
1 parent a062131 commit d20815e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/FdfFile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
class FdfFile extends File
1717
{
1818
// FDF file header
19-
public const FDF_HEADER = <<<FDF
19+
private const FDF_HEADER = <<<FDF
2020
%FDF-1.2
2121
1 0 obj<</FDF<< /Fields[
2222
FDF;
2323

2424
// FDF file footer
25-
public const FDF_FOOTER = <<<FDF
25+
private const FDF_FOOTER = <<<FDF
2626
] >> >>
2727
endobj
2828
trailer

src/XfdfFile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@
5353
class XfdfFile extends File
5454
{
5555
// XFDF file header
56-
public const XFDF_HEADER = <<<FDF
56+
private const XFDF_HEADER = <<<FDF
5757
<?xml version="1.0" encoding="UTF-8"?>
5858
<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">
5959
<fields>
6060
6161
FDF;
6262

6363
// XFDF file footer
64-
public const XFDF_FOOTER = <<<FDF
64+
private const XFDF_FOOTER = <<<FDF
6565
</fields>
6666
</xfdf>
6767

0 commit comments

Comments
 (0)