Completed
Push — fetcher_factories ( 10a56f...fd93ea )
by David
13:44
created

SplashCreateControllerServiceException   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 2
c 2
b 0
f 1
lcom 0
cbo 1
dl 0
loc 20
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getErrors() 0 4 1
A setErrors() 0 4 1
1
<?php
2
3
namespace Mouf\Mvc\Splash\Services;
4
5
use Mouf\Mvc\Splash\Utils\SplashException;
6
7
class SplashCreateControllerServiceException extends SplashException
8
{
9
    private $errors;
10
11
    /**
12
     * @return mixed
13
     */
14
    public function getErrors()
15
    {
16
        return $this->errors;
17
    }
18
19
    /**
20
     * @param mixed $errors
21
     */
22
    public function setErrors($errors)
23
    {
24
        $this->errors = $errors;
25
    }
26
}
27