aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/uri/.php-cs-fixer.dist.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/uri/.php-cs-fixer.dist.php')
-rw-r--r--vendor/sabre/uri/.php-cs-fixer.dist.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/vendor/sabre/uri/.php-cs-fixer.dist.php b/vendor/sabre/uri/.php-cs-fixer.dist.php
index 87337520b..f9d4b7a8d 100644
--- a/vendor/sabre/uri/.php-cs-fixer.dist.php
+++ b/vendor/sabre/uri/.php-cs-fixer.dist.php
@@ -7,7 +7,11 @@ $finder = PhpCsFixer\Finder::create()
$config = new PhpCsFixer\Config();
$config->setRules([
'@PSR1' => true,
- '@Symfony' => true
+ '@Symfony' => true,
+ 'nullable_type_declaration' => [
+ 'syntax' => 'question_mark',
+ ],
+ 'nullable_type_declaration_for_default_null_value' => true,
]);
$config->setFinder($finder);
return $config; \ No newline at end of file