mirror of
https://github.com/wallabag/wallabag.git
synced 2025-06-27 16:36:00 +00:00
Modernize to PHP 7.1
This commit is contained in:
parent
241cddc899
commit
f8c8bb7d93
2 changed files with 2 additions and 2 deletions
|
@ -14,5 +14,5 @@ return RectorConfig::configure()
|
|||
])
|
||||
->withImportNames(importShortClasses: false)
|
||||
->withAttributesSets(doctrine: true)
|
||||
->withPhpSets(php70: true)
|
||||
->withPhpSets(php71: true)
|
||||
->withTypeCoverageLevel(0);
|
||||
|
|
|
@ -119,7 +119,7 @@ class GrabySiteConfigBuilder implements SiteConfigBuilder
|
|||
continue;
|
||||
}
|
||||
|
||||
list($fieldName, $fieldValue) = explode('=', $extraField, 2);
|
||||
[$fieldName, $fieldValue] = explode('=', $extraField, 2);
|
||||
$extraFields[$fieldName] = $fieldValue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue