From bf2f47303881dabd0855eb481e4c43221f31ff96 Mon Sep 17 00:00:00 2001 From: brabli <67018167+brabli@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:57:04 +0100 Subject: [PATCH] Replace tabs with 4 spaces --- justfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/justfile b/justfile index cc4caa1..b200856 100644 --- a/justfile +++ b/justfile @@ -1,15 +1,15 @@ php := "docker compose run php" composer_install: - @{{php}} composer install + @{{php}} composer install composer_update: - @{{php}} composer update + @{{php}} composer update static_analysis: - @{{php}} vendor/bin/psalm + @{{php}} vendor/bin/psalm tests: - @{{php}} rm -rf var/cache - @{{php}} vendor/bin/phpunit + @{{php}} rm -rf var/cache + @{{php}} vendor/bin/phpunit