From e59306c65edf6c07e1ef7538d2cee275bbc83329 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Fri, 12 Jun 2020 00:46:07 +0200 Subject: [PATCH] Remove @throws by CS fixer (#211) --- .php_cs.dist | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.php_cs.dist b/.php_cs.dist index 15edb268..5e91a354 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -48,6 +48,9 @@ return PhpCsFixer\Config::create() 'phpdoc_add_missing_param_annotation' => false, 'return_assignment' => false, 'comment_to_phpdoc' => false, + 'general_phpdoc_annotation_remove' => [ + 'annotations' => ['author', 'copyright', 'throws'], + ], 'nullable_type_declaration_for_default_null_value' => [ 'use_nullable_type_declaration' => false, ],