Skip to content

Commit

Permalink
Skip line length phpcs check for Pop3/Imap constructors
Browse files Browse the repository at this point in the history
Signed-off-by: Elan Ruusamäe <glen@pld-linux.org>
  • Loading branch information
glensc committed Feb 27, 2021
1 parent c96798a commit 1ea9b8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Storage/Imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ public function getRawContent($id, $part = null)
return $this->protocol->fetch('RFC822.TEXT', $id);
}

// @codingStandardsIgnoreStart
/**
* create instance with parameters
*
Expand All @@ -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)) {
Expand Down
2 changes: 2 additions & 0 deletions src/Storage/Pop3.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public function getRawContent($id, $part = null)
return $body;
}

// @codingStandardsIgnoreStart
/**
* create instance with parameters
* Supported parameters are
Expand All @@ -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)) {
Expand Down

0 comments on commit 1ea9b8f

Please sign in to comment.