|
62 | 62 | 'no_leading_import_slash' => true, |
63 | 63 | 'no_leading_namespace_whitespace' => true, |
64 | 64 | 'no_singleline_whitespace_before_semicolons' => true, |
| 65 | + 'no_superfluous_phpdoc_tags' => [ |
| 66 | + 'allow_mixed' => true, |
| 67 | + 'remove_inheritdoc' => true, |
| 68 | + 'allow_unused_params' => true, // Used in RemoteWebDriver::createBySessionID to maintain BC |
| 69 | + ], |
65 | 70 | 'no_trailing_comma_in_singleline' => true, |
66 | 71 | 'no_unreachable_default_argument_value' => true, |
67 | 72 | 'no_unused_imports' => true, |
|
96 | 101 | 'phpdoc_scalar' => true, |
97 | 102 | 'phpdoc_single_line_var_spacing' => true, |
98 | 103 | 'phpdoc_trim' => true, |
| 104 | + //'phpdoc_to_param_type' => true, |
| 105 | + //'phpdoc_to_return_type' => true, |
99 | 106 | 'phpdoc_types' => true, |
100 | 107 | 'phpdoc_var_annotation_correct_order' => true, |
| 108 | + //'pow_to_exponentiation' => true, |
101 | 109 | 'psr_autoloading' => true, |
102 | 110 | 'random_api_migration' => true, |
103 | 111 | 'self_accessor' => true, |
|
118 | 126 | 'trim_array_spaces' => true, |
119 | 127 | 'unary_operator_spaces' => true, |
120 | 128 | 'visibility_required' => ['elements' => ['method', 'property', 'const']], |
| 129 | + //'void_return' => true, |
121 | 130 | 'whitespace_after_comma_in_array' => true, |
122 | 131 | 'yoda_style' => ['equal' => false, 'identical' => false, 'less_and_greater' => false], |
123 | 132 | ]) |
|
0 commit comments