ClientCollection   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 52
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 1
dl 0
loc 52
ccs 13
cts 13
cp 1
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A addClient() 0 14 3
A getApnsClients() 0 6 1
A getGcmClients() 0 6 1
1
<?php
2
3
/*
4
 * This file is part of the MobileNotifBundle package.
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace LinkValue\MobileNotifBundle\Client;
11
12
use Doctrine\Common\Collections\ArrayCollection;
13
use LinkValue\MobileNotif\Client\ClientInterface;
14
15
/**
16
 * ClientCollection.
17
 *
18
 * @package MobileNotifBundle
19
 * @author  Jamal Youssefi <[email protected]>
20
 * @author  Valentin Coulon <[email protected]>
21
 */
22
class ClientCollection extends ArrayCollection
23
{
24
    /**
25
     * Add $client referenced by $key to the collection.
26
     *
27
     * @param string          $key    key to store the client
28
     * @param ClientInterface $client
29
     *
30
     * @return self
31
     *
32
     * @throws \InvalidArgumentException if the key is not a string
33
     * @throws \RuntimeException if the key already exists
34
     */
35 5
    public function addClient($key, ClientInterface $client)
36
    {
37 5
        if (!is_string($key)) {
38 1
            throw new \InvalidArgumentException('The client key must be a string.');
39
        }
40
41 4
        if ($this->containsKey($key)) {
42 1
            throw new \RuntimeException(sprintf('A client key "%s" already exists.', $key));
43
        }
44
45 4
        $this->set($key, $client);
46
47 4
        return $this;
48
    }
49
50
    /**
51
     * Retrieve all ApnsClient of a ClientCollection.
52
     *
53
     * @return ClientCollection
54
     */
55 1
    public function getApnsClients()
56
    {
57
        return $this->filter(function (ClientInterface $client) {
58 1
            return $client instanceof ApnsClient;
59 1
        });
60
    }
61
62
    /**
63
     * Retrieve all GcmClient of a ClientCollection.
64
     *
65
     * @return ClientCollection
66
     */
67
    public function getGcmClients()
68
    {
69 1
        return $this->filter(function (ClientInterface $client) {
70 1
            return $client instanceof GcmClient;
71 1
        });
72
    }
73
}
74