From 9cc6dee8285849dcacc4b0959decd8b070ca57d8 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Sat, 8 Feb 2020 00:59:40 -0700 Subject: [PATCH] Allow voit return types in docblocks --- .php_cs.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs.dist b/.php_cs.dist index 5f7f9ed..9049039 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -22,6 +22,7 @@ return PhpCsFixer\Config::create() 'no_useless_else' => true, 'no_useless_return' => true, 'not_operator_with_successor_space' => true, + 'phpdoc_no_empty_return' => false, 'phpdoc_order' => true, 'semicolon_after_instruction' => true, 'trailing_comma_in_multiline_array' => false,