File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
.env
5
5
.phpunit.result.cache
6
6
.php-cs-fixer.cache
7
+ /.phpunit.cache /test-results
Original file line number Diff line number Diff line change @@ -779,6 +779,6 @@ You can check the [actions](https://github.com/lapaliv/laravel-bulk-upsert/actio
779
779
``` shell
780
780
git clone https://github.com/lapaliv/laravel-bulk-upsert.git
781
781
cp .env.example .env
782
- docker-composer up -d
782
+ docker-compose up -d
783
783
./vendor/bin/phpunit
784
784
```
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ class GetValueHashFeature
9
9
{
10
10
public function handle (mixed $ value ): string
11
11
{
12
- return hash ('crc32c ' , $ value . ': ' . gettype ($ value ));
12
+ return hash ('crc32c ' , ( $ value-> value ?? $ value ) . ': ' . gettype ($ value ));
13
13
}
14
14
}
You can’t perform that action at this time.
0 commit comments