Skip to content

Commit

Permalink
fixes CS issue in Config.php (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
k00ni committed Apr 26, 2021
1 parent 57667ee commit d4148fd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Smalot/PdfParser/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ class Config

/**
* Represents: (NUL, HT, LF, FF, CR, SP)
*
* @var string
*/
private $pdfWhitespaces = "\0\t\n\f\r ";

/**
* Represents: (NUL, HT, LF, FF, CR, SP)
*
* @var string
*/
private $pdfWhitespacesRegex = '[\0\t\n\f\r ]';
Expand Down

0 comments on commit d4148fd

Please sign in to comment.