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 — 3.0 ( 6209fa...31a631 )
by Szurovecz
04:34 queued 02:00
created

RepositoryDelegate::load()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
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 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/*
3
 * Copyright (c) 2012-2014 Janos Szurovecz
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6
 * this software and associated documentation files (the "Software"), to deal in
7
 * the Software without restriction, including without limitation the rights to
8
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9
 * of the Software, and to permit persons to whom the Software is furnished to do
10
 * so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in all
13
 * copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
 * SOFTWARE.
22
 */
23
24
namespace predaddy\domain;
25
26
use InvalidArgumentException;
27
use OutOfBoundsException;
28
use precore\util\Preconditions;
29
30
/**
31
 * Delegates method calls to the repository registered to the specified aggregate.
32
 *
33
 * @package predaddy\domain
34
 * @author Janos Szurovecz <[email protected]>
35
 */
36
final class RepositoryDelegate implements Repository
37
{
38
    /**
39
     * @var array
40
     */
41
    private $repositories;
42
43
    /**
44
     * Keys are the aggregate class name, the values are the corresponding repository.
45
     *
46
     * @param array $repositories
47
     */
48
    public function __construct(array $repositories)
49
    {
50
        $this->repositories = $repositories;
51
    }
52
53
    /**
54
     * Load the aggregate identified by $aggregateId from the persistent storage.
55
     *
56
     * @param AggregateId $aggregateId
57
     * @return AggregateRoot
58
     * @throws InvalidArgumentException If the $aggregateId is invalid
59
     */
60
    public function load(AggregateId $aggregateId)
61
    {
62
        return $this->getProperRepository($aggregateId->aggregateClass())->load($aggregateId);
63
    }
64
65
    /**
66
     * Persisting the given $aggregateRoot.
67
     *
68
     * @param AggregateRoot $aggregateRoot
69
     */
70
    public function save(AggregateRoot $aggregateRoot)
71
    {
72
        $this->getProperRepository($aggregateRoot->className())->save($aggregateRoot);
73
    }
74
75
    /**
76
     * @param $className
77
     * @return Repository
78
     * @throws InvalidArgumentException
79
     */
80
    private function getProperRepository($className)
81
    {
82
        try {
83
            return Preconditions::checkElementExists(
84
                $this->repositories,
85
                $className,
86
                "There is no registered repository to aggregate '%s'",
87
                $className
88
            );
89
        } catch (OutOfBoundsException $e) {
90
            throw new InvalidArgumentException('', 0, $e);
91
        }
92
    }
93
}
94