Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ phpstan: ## Execute PHPStan for given PHP version
@$(call run-php,composer phpstan -- $(filter-out $@,$(MAKECMDGOALS)))

ci: ## Execute CI scripts for given PHP version
$(MAKE) build-php
$(MAKE) install
@$(call run-php,composer ci -- $(filter-out $@,$(MAKECMDGOALS)))

generate-css-referentials: ## Generate referentials for given PHP version
Expand Down
2 changes: 1 addition & 1 deletion src/CssLint/Tokenizer/Parser/PropertyParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private function updatePropertyToken(TokenizerContext $tokenizerContext, Propert
}

$parts = array_map(
'trim',
trim(...),
explode(
self::$PROPERTY_SEPARATOR,
$currentContent,
Expand Down
2 changes: 1 addition & 1 deletion tools/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require": {
"friendsofphp/php-cs-fixer": "^3.88",
"friendsofphp/php-cs-fixer": "^3.89",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
Expand Down