LocalizedException   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 58
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 58
rs 10
c 0
b 0
f 0
wmc 5
lcom 1
cbo 2

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getRawMessage() 0 4 1
A getParameters() 0 4 1
A getLogMessage() 0 8 2
1
<?php
2
/**
3
 * Copyright © 2017 Toan Nguyen. All rights reserved.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
9
namespace Gojira\Framework\Exception;
10
11
use Gojira\Framework\Phrase;
12
use Gojira\Framework\Phrase\Renderer\Placeholder;
13
14
/**
15
 * Class LocalizedException
16
 *
17
 * @api
18
 * @package Gojira\Framework\Exception
19
 * @author  Toan Nguyen <[email protected]>
20
 */
21
class LocalizedException extends \Exception
22
{
23
    /**
24
     * @var \Gojira\Framework\Phrase
25
     */
26
    protected $phrase;
27
28
    /**
29
     * @var string
30
     */
31
    protected $logMessage;
32
33
    /**
34
     * Constructor
35
     *
36
     * @param \Gojira\Framework\Phrase $phrase
37
     * @param \Exception $cause
38
     */
39
    public function __construct(Phrase $phrase, \Exception $cause = null)
40
    {
41
        $this->phrase = $phrase;
42
        parent::__construct($phrase->render(), 0, $cause);
43
    }
44
45
    /**
46
     * Get the un-processed message, without the parameters filled in
47
     *
48
     * @return string
49
     */
50
    public function getRawMessage()
51
    {
52
        return $this->phrase->getText();
53
    }
54
55
    /**
56
     * Get parameters, corresponding to placeholders in raw exception message
57
     *
58
     * @return array
59
     */
60
    public function getParameters()
61
    {
62
        return $this->phrase->getArguments();
63
    }
64
65
    /**
66
     * Get the un-localized message, but with the parameters filled in
67
     *
68
     * @return string
69
     */
70
    public function getLogMessage()
71
    {
72
        if ($this->logMessage === null) {
73
            $renderer = new Placeholder();
74
            $this->logMessage = $renderer->render([$this->getRawMessage()], $this->getParameters());
75
        }
76
        return $this->logMessage;
77
    }
78
}
79