Skip to content

Commit 2999bc4

Browse files
committed
code style
1 parent a453342 commit 2999bc4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,19 +108,19 @@ foreach ($suppliers as $supplier) {
108108
// Filter for ISO 9001 certified suppliers
109109
$iso9001Suppliers = array_filter(
110110
$suppliers,
111-
fn($s) => $s->hasCertification('ISO 9001')
111+
fn ($s) => $s->hasCertification('ISO 9001')
112112
);
113113

114114
// Filter by state
115115
$texasSuppliers = array_filter(
116116
$suppliers,
117-
fn($s) => $s->address->state === 'TX'
117+
fn ($s) => $s->address->state === 'TX'
118118
);
119119

120120
// Filter by employee count
121121
$largeSuppliers = array_filter(
122122
$suppliers,
123-
fn($s) => $s->numberEmployees === '1000+'
123+
fn ($s) => $s->numberEmployees === '1000+'
124124
);
125125
```
126126

0 commit comments

Comments
 (0)