Skip to content

Commit

Permalink
chore: Fixed Dockerfile.php7 xdebug version
Browse files Browse the repository at this point in the history
  • Loading branch information
hoshomoh committed Oct 27, 2023
1 parent f5c37eb commit edc022c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if ($validator->fails()) {

##### Error messages

To get the rows with validation errors and there errors. The validator expose `errors` method that can be used like so `$validator->errors()`.
To get the rows with validation errors and their errors. The validator expose `errors` method that can be used like so `$validator->errors()`.

You can also customize the error messages for different validation rules and different attributes by passing a message array to the validator like so:

Expand Down Expand Up @@ -310,4 +310,4 @@ The project run's automatic checks to make sure that the Symfony code standards
So, before pushing or making any pull request run the below command:

* `composer test`: For running test
* `composer fixlint`: For running php-cs-fixer to fix linting errors
* `composer fix-lint`: For running php-cs-fixer to fix linting errors
2 changes: 1 addition & 1 deletion docker/php/Dockerfile.php7
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
zip \
unzip

RUN pecl install xdebug \
RUN pecl install xdebug-3.1.5 \
&& docker-php-ext-enable xdebug

# Get latest Composer
Expand Down

0 comments on commit edc022c

Please sign in to comment.