Skip to content

Commit

Permalink
Add blank line between constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Roshyo committed Jan 26, 2022
1 parent 9fe0a4c commit cf1f729
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Provider/PdfOrientationProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
interface PdfOrientationProviderInterface
{
public const ORIENTATION_PORTRAIT = 'Portrait';

public const ORIENTATION_LANDSCAPE = 'Landscape';

public function getAvailableOrientations(): array;
Expand Down
5 changes: 5 additions & 0 deletions src/Provider/PdfPageSizeProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@
interface PdfPageSizeProviderInterface
{
public const FORMAT_A3 = 'A3';

public const FORMAT_A4 = 'A4';

public const FORMAT_A5 = 'A5';

public const FORMAT_A6 = 'A6';

public const FORMAT_A7 = 'A7';

public const FORMAT_A8 = 'A8';

public function getAvailablePageSizes(): array;
Expand Down

0 comments on commit cf1f729

Please sign in to comment.