Passed
Pull Request — master (#288)
by Christoffer
03:31
created

ErrorHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A handleError() 0 2 1
1
<?php
2
3
namespace Digia\GraphQL\Error;
4
5
class ErrorHandler implements ErrorHandlerInterface
6
{
7
    /**
8
     * @inheritdoc
9
     */
10
    public function handleError(ExecutionException $exception)
11
    {
12
        // Default error handler does not need to do anything.
13
    }
14
}
15