Skip to content

Commit

Permalink
#2341 - Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Jan 22, 2022
1 parent 177b6e5 commit 0555963
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Library/ArgInfoDefinition.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public function render(): void
{
if ($this->renderCompatible()) {
$this->codePrinter->outputBlankLine();

return;
}

Expand Down
10 changes: 5 additions & 5 deletions config/compatibility-headers.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
'#if PHP_VERSION_ID >= 80000' => [
'ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(__ce__, 0, 1, IS_VOID, 0)',
' ZEND_ARG_TYPE_INFO(0, serialized, IS_STRING, 0)',
'ZEND_END_ARG_INFO()'
'ZEND_END_ARG_INFO()',
],
'#else' => [
'ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(__ce__, 0, 1, IS_VOID, 0)',
' ZEND_ARG_INFO(0, serialized)',
'ZEND_END_ARG_INFO()'
]
'ZEND_END_ARG_INFO()',
],
],
],

Expand All @@ -42,7 +42,7 @@
'ZEND_BEGIN_ARG_INFO_EX(__ce__, 0, 0, 1)',
' ZEND_ARG_INFO(0, maxlifetime)',
'ZEND_END_ARG_INFO()',
]
]
],
],
],
];

0 comments on commit 0555963

Please sign in to comment.