PHP Classes

File: check.bat

Recommend this page to a friend!
  Classes of Mohamed Ahmed   Laravel MCP SDK   check.bat   Download  
File: check.bat
Role: Auxiliary data
Content typex: text/plain
Description: Auxiliary data
Class: Laravel MCP SDK
Create tools to process user requests with prompts
Author: By
Last change:
Date: Yesterday
Size: 596 bytes
 

Contents

Class file image Download
@echo off echo Running PHP CS Fixer... set PHP_CS_FIXER_IGNORE_ENV=1 vendor\bin\php-cs-fixer fix if errorlevel 1 ( echo PHP CS Fixer found issues exit /b 1 ) echo. echo Running PHP_CodeSniffer... vendor\bin\phpcs --standard=phpcs.xml if errorlevel 1 ( echo PHP_CodeSniffer found issues exit /b 1 ) echo. echo Running PHPStan... vendor\bin\phpstan analyse if errorlevel 1 ( echo PHPStan found issues exit /b 1 ) echo. echo Running PHPUnit... vendor\bin\phpunit if errorlevel 1 ( echo PHPUnit tests failed exit /b 1 ) echo. echo All checks passed successfully!