From d4148fd8160f2e9cfc03f0bbfa4efba8a4e15fa4 Mon Sep 17 00:00:00 2001 From: Konrad Abicht Date: Mon, 26 Apr 2021 14:46:49 +0200 Subject: [PATCH] fixes CS issue in Config.php (#414) --- src/Smalot/PdfParser/Config.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Smalot/PdfParser/Config.php b/src/Smalot/PdfParser/Config.php index 1e13081c..cfa202e3 100644 --- a/src/Smalot/PdfParser/Config.php +++ b/src/Smalot/PdfParser/Config.php @@ -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 ]';