We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a453342 commit 2999bc4Copy full SHA for 2999bc4
1 file changed
README.md
@@ -108,19 +108,19 @@ foreach ($suppliers as $supplier) {
108
// Filter for ISO 9001 certified suppliers
109
$iso9001Suppliers = array_filter(
110
$suppliers,
111
- fn($s) => $s->hasCertification('ISO 9001')
+ fn ($s) => $s->hasCertification('ISO 9001')
112
);
113
114
// Filter by state
115
$texasSuppliers = array_filter(
116
117
- fn($s) => $s->address->state === 'TX'
+ fn ($s) => $s->address->state === 'TX'
118
119
120
// Filter by employee count
121
$largeSuppliers = array_filter(
122
123
- fn($s) => $s->numberEmployees === '1000+'
+ fn ($s) => $s->numberEmployees === '1000+'
124
125
```
126
0 commit comments