| 1 | <?php |
||
| 5 | class PhpCsFixerLevels |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var Level |
||
| 9 | */ |
||
| 10 | private $psr0; |
||
| 11 | /** |
||
| 12 | * @var Level |
||
| 13 | */ |
||
| 14 | private $psr1; |
||
| 15 | /** |
||
| 16 | * @var Level |
||
| 17 | */ |
||
| 18 | private $psr2; |
||
| 19 | /** |
||
| 20 | * @var Level |
||
| 21 | */ |
||
| 22 | private $symfony; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * PhpCsFixerLevels constructor. |
||
| 26 | * |
||
| 27 | * @param Level $psr0 |
||
| 28 | * @param Level $psr1 |
||
| 29 | * @param Level $psr2 |
||
| 30 | * @param Level $symfony |
||
| 31 | */ |
||
| 32 | 6 | public function __construct(Level $psr0, Level $psr1, Level $psr2, Level $symfony) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @return Level |
||
| 42 | */ |
||
| 43 | 3 | public function getPsr0() |
|
| 47 | |||
| 48 | /** |
||
| 49 | * @return Level |
||
| 50 | */ |
||
| 51 | 3 | public function getPsr1() |
|
| 55 | |||
| 56 | /** |
||
| 57 | * @return Level |
||
| 58 | */ |
||
| 59 | 3 | public function getPsr2() |
|
| 63 | |||
| 64 | /** |
||
| 65 | * @return Level |
||
| 66 | */ |
||
| 67 | 3 | public function getSymfony() |
|
| 71 | } |
||
| 72 |