| 1 | <?php |
||
| 10 | final class Php7CodeSnifferCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | private $source; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | private $standards; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | private $sniffs; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var array |
||
| 29 | */ |
||
| 30 | private $excludedSniffs; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var bool |
||
| 34 | */ |
||
| 35 | private $isFixer; |
||
| 36 | |||
| 37 | public function __construct( |
||
| 50 | |||
| 51 | public function getSource() : array |
||
| 55 | |||
| 56 | public function getStandards() : array |
||
| 60 | |||
| 61 | public function getSniffs() : array |
||
| 65 | |||
| 66 | public function getExcludedSniffs() : array |
||
| 70 | |||
| 71 | public function isFixer() : bool |
||
| 75 | } |
||
| 76 |