Passed
Pull Request — master (#11)
by Barney
06:15
created

NullExceptionHandler::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
eloc 0
nc 1
nop 1
1
<?php
2
/**
3
 * @codingStandardsIgnoreStart
4
 *
5
 * @author       Barney Hanlon <[email protected]>
6
 * @copyright    Barney Hanlon 2017
7
 * @license      https://opensource.org/licenses/MIT
8
 *
9
 * @codingStandardsIgnoreEnd
10
 */
11
12
namespace Shrikeh\GuzzleMiddleware\TimerLogger\Handler\ExceptionHandler;
13
14
use Exception;
15
16
/**
17
 * Interface ExceptionHandlerInterface
18
 */
19
class NullExceptionHandler implements ExceptionHandlerInterface
20
{
21
    /**
22
     * {@inheritdoc}
23
     */
24
    public function handle(Exception $e)
25
    {
26
        // TODO: Implement handle() method.
27
    }
28
}
29