@@ -123,21 +123,21 @@ composer-update: ## Composer: executes <composer update> inside the container
123123# ##
124124
125125.PHONY : check-syntax
126- check-syntax : # # QA: executes <check-syntax> inside the container
126+ check-syntax : # # QA: executes <composer check-syntax> inside the container
127127 $(call showInfo,"Executing \<composer check-syntax\>...")
128128 @echo " "
129129 @$(DOCKER_RUN_AS_USER ) composer check-syntax
130130 $(call taskDone)
131131
132132.PHONY : check-style
133- check-style : # # QA: executes <check-style> inside the container
133+ check-style : # # QA: executes <composer check-style> inside the container
134134 $(call showInfo,"Executing \<composer check-style\>...")
135135 @echo " "
136136 @$(DOCKER_RUN_AS_USER ) composer check-style
137137 $(call taskDone)
138138
139139.PHONY : fix-style
140- fix-style : # # QA: executes <fix-style> inside the container
140+ fix-style : # # QA: executes <composer fix-style> inside the container
141141 $(call showInfo,"Executing \<composer fix-style\>...")
142142 @echo " "
143143 @$(DOCKER_RUN_AS_USER ) composer fix-style
@@ -151,15 +151,15 @@ phpstan: ## QA: executes <composer phpstan> inside the container
151151 $(call taskDone)
152152
153153.PHONY : tests
154- test : # # QA: executes <composer paratest > inside the container
155- $(call showInfo,"Executing \<composer paratest \>...")
154+ test : # # QA: executes <composer test > inside the container
155+ $(call showInfo,"Executing \<composer test \>...")
156156 @echo " "
157157 @$(DOCKER_RUN_AS_USER ) composer test
158158 $(call taskDone)
159159
160160.PHONY : coverage
161- coverage : # # QA: executes <composer paracoverage > inside the container
162- $(call showInfo,"Executing \<composer paracoverage \>...")
161+ coverage : # # QA: executes <composer coverage > inside the container
162+ $(call showInfo,"Executing \<composer coverage \>...")
163163 @echo " "
164164 @$(DOCKER_RUN_AS_USER ) composer coverage
165165 $(call taskDone)
0 commit comments