Skip to content

Commit 1f83b68

Browse files
authored
Fix: Mark class as final (#718)
1 parent e0c22fe commit 1f83b68

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

roave-bc-check.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
parameters:
22
ignoreErrors:
3+
- '#\[BC\] CHANGED: Class Faker\\Core\\Coordinates became final#'
34
- '#\[BC\] CHANGED: Property Faker\\Factory::\$defaultProviders changed default value#'
45
- '#\[BC\] CHANGED: Property Faker\\Provider\\[a-z_A-Z]+\\[a-zA-Z]+::\$[1-9a-zA-Z]+ changed default value#'
56
- '#\[BC\] CHANGED: Property Faker\\Provider\\[a-zA-Z]+::\$[1-9a-zA-Z]+ changed default value#'

src/Faker/Core/Coordinates.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* @experimental This class is experimental and does not fall under our BC promise
1111
*/
12-
class Coordinates implements Extension\Extension
12+
final class Coordinates implements Extension\Extension
1313
{
1414
private Extension\NumberExtension $numberExtension;
1515

0 commit comments

Comments
 (0)