Skip to content

Commit 17799d1

Browse files
committedMar 8, 2020
Fix duplicate synchronizations and update scrutinizer
part of #5
1 parent c90c9ff commit 17799d1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎.scrutinizer.yml

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ build:
55
override: true
66
tests:
77
override: [php-scrutinizer-run]
8+
environment:
9+
php:
10+
version: 7.4
811

912
filter:
1013
excluded_paths: [tests/*]

‎src/Console/Commands/MakeSynchronizationCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function handle()
8080
*/
8181
protected function alreadyExists($rawName)
8282
{
83-
return $this->synchronizer->hasSynchronization($rawName);
83+
return $this->synchronizer->hasSynchronization(Str::studly($rawName));
8484
}
8585

8686
/**

0 commit comments

Comments
 (0)