GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( a6909c...b32323 )
by Florian
05:40
created

ImapExtension::search()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 5
rs 9.4286
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
namespace Checkdomain\Comodo;
3
4
use Zend\Mail\Storage\Imap;
5
6
/**
7
 * @package Checkdomain\Comodo
8
 */
9
class ImapExtension extends Imap
10
{
11
    /**
12
     * @param array $params
13
     *
14
     * @return array
15
     */
16
    public function search(array $params)
17
    {
18
        // For the search function, it must have the ability to send non-arrays
19
        return $this->protocol->search($params);
20
    }
21
}
22