diff --git a/src/Storage/Imap.php b/src/Storage/Imap.php index eea1280f..7960fed4 100644 --- a/src/Storage/Imap.php +++ b/src/Storage/Imap.php @@ -169,6 +169,7 @@ public function getRawContent($id, $part = null) return $this->protocol->fetch('RFC822.TEXT', $id); } + // @codingStandardsIgnoreStart /** * create instance with parameters * @@ -186,6 +187,7 @@ public function getRawContent($id, $part = null) * @throws Exception\InvalidArgumentException * @throws Protocol\Exception\RuntimeException */ + // @codingStandardsIgnoreEnd public function __construct($params) { if (is_array($params)) { diff --git a/src/Storage/Pop3.php b/src/Storage/Pop3.php index b8f49bec..d40e7a6a 100644 --- a/src/Storage/Pop3.php +++ b/src/Storage/Pop3.php @@ -113,6 +113,7 @@ public function getRawContent($id, $part = null) return $body; } + // @codingStandardsIgnoreStart /** * create instance with parameters * Supported parameters are @@ -126,6 +127,7 @@ public function getRawContent($id, $part = null) * @throws \Laminas\Mail\Storage\Exception\InvalidArgumentException * @throws \Laminas\Mail\Protocol\Exception\RuntimeException */ + // @codingStandardsIgnoreEnd public function __construct($params) { if (is_array($params)) {