Mandrill_Whitelists   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 53
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 9
c 1
b 0
f 0
dl 0
loc 53
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A add() 0 4 1
A getList() 0 4 1
A __construct() 0 3 1
A delete() 0 4 1
1
<?php
2
3
class Mandrill_Whitelists
4
{
5
6
    private $master;
7
8
    public function __construct(Mandrill $master)
9
    {
10
        $this->master = $master;
11
    }
12
13
    /**
14
     * Adds an email to your email rejection whitelist. If the address is
15
      currently on your blacklist, that blacklist entry will be removed
16
      automatically.
17
     * @param string $email an email address to add to the whitelist
18
     * @param string $comment an optional description of why the email was whitelisted
19
     * @return struct a status object containing the address and the result of the operation
0 ignored issues
show
Bug introduced by
The type struct was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
20
     *     - email string the email address you provided
21
     *     - added boolean whether the operation succeeded
22
     */
23
    public function add($email, $comment = null)
24
    {
25
        $_params = array("email" => $email, "comment" => $comment);
26
        return $this->master->call('whitelists/add', $_params);
27
    }
28
29
    /**
30
     * Retrieves your email rejection whitelist. You can provide an email
31
      address or search prefix to limit the results. Returns up to 1000 results.
32
     * @param string $email an optional email address or prefix to search by
33
     * @return array up to 1000 whitelist entries
34
     *     - return[] struct the information for each whitelist entry
35
     *         - email string the email that is whitelisted
36
     *         - detail string a description of why the email was whitelisted
37
     *         - created_at string when the email was added to the whitelist
38
     */
39
    public function getList($email = null)
40
    {
41
        $_params = array("email" => $email);
42
        return $this->master->call('whitelists/list', $_params);
43
    }
44
45
    /**
46
     * Removes an email address from the whitelist.
47
     * @param string $email the email address to remove from the whitelist
48
     * @return struct a status object containing the address and whether the deletion succeeded
49
     *     - email string the email address that was removed from the blacklist
50
     *     - deleted boolean whether the address was deleted successfully
51
     */
52
    public function delete($email)
53
    {
54
        $_params = array("email" => $email);
55
        return $this->master->call('whitelists/delete', $_params);
56
    }
57
}
58