From ce4b9f25d9f0024eaa47c78f50ddfb87328ab4b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Burnichon?= Date: Mon, 25 Jan 2016 15:41:42 +0100 Subject: [PATCH] PHPCS: Parameter types are declared wrong way --- lib/Alchemy/Phrasea/Out/Module/PDF.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Alchemy/Phrasea/Out/Module/PDF.php b/lib/Alchemy/Phrasea/Out/Module/PDF.php index 9c69e8d4ef..8fe925d8b3 100644 --- a/lib/Alchemy/Phrasea/Out/Module/PDF.php +++ b/lib/Alchemy/Phrasea/Out/Module/PDF.php @@ -146,7 +146,7 @@ class PDF $irow = $ipage = 0; $icol = -1; foreach ($this->records as $rec) { - /* @var $rec record_adapter */ + /* @var \record_adapter $rec */ if (++$icol >= $NDiapoW) { $icol = 0; if (++$irow >= $NDiapoH) { @@ -226,7 +226,7 @@ class PDF $ndoc = 0; foreach ($this->records as $rec) { - /* @var $rec record_adapter */ + /* @var \record_adapter $rec */ $subdef = $rec->get_subdef('thumbnail'); $fimg = $subdef->getRealPath(); @@ -322,7 +322,7 @@ class PDF } foreach ($this->records as $krec => $rec) { - /* @var $rec record_adapter */ + /* @var \record_adapter $rec */ $this->pdf->AddPage();