Skip to content

Commit 1d11549

Browse files
keradusnicolas-grekas
authored andcommitted
chore: CS fixes
1 parent 044d555 commit 1d11549

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Tests/ParameterBagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public function testFilter()
251251
'dec' => '256',
252252
'hex' => '0x100',
253253
'array' => ['bang'],
254-
]);
254+
]);
255255

256256
$this->assertEmpty($bag->filter('nokey'), '->filter() should return empty by default if no key is found');
257257

Tests/Session/Flash/AutoExpireFlashBagTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ public function testInitialize()
4646
$bag->initialize($array);
4747
$this->assertEquals(['A previous flash message'], $bag->peek('notice'));
4848
$array = ['new' => [
49-
'notice' => ['Something else'],
50-
'error' => ['a'],
51-
]];
49+
'notice' => ['Something else'],
50+
'error' => ['a'],
51+
]];
5252
$bag->initialize($array);
5353
$this->assertEquals(['Something else'], $bag->peek('notice'));
5454
$this->assertEquals(['a'], $bag->peek('error'));
@@ -106,13 +106,13 @@ public function testPeekAll()
106106
$this->assertEquals([
107107
'notice' => 'Foo',
108108
'error' => 'Bar',
109-
], $this->bag->peekAll()
109+
], $this->bag->peekAll()
110110
);
111111

112112
$this->assertEquals([
113113
'notice' => 'Foo',
114114
'error' => 'Bar',
115-
], $this->bag->peekAll()
115+
], $this->bag->peekAll()
116116
);
117117
}
118118

@@ -137,7 +137,7 @@ public function testAll()
137137
$this->bag->set('error', 'Bar');
138138
$this->assertEquals([
139139
'notice' => ['A previous flash message'],
140-
], $this->bag->all()
140+
], $this->bag->all()
141141
);
142142

143143
$this->assertEquals([], $this->bag->all());

Tests/Session/Flash/FlashBagTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ public function testPeekAll()
141141
$this->assertEquals([
142142
'notice' => ['Foo'],
143143
'error' => ['Bar'],
144-
], $this->bag->peekAll()
144+
], $this->bag->peekAll()
145145
);
146146
$this->assertTrue($this->bag->has('notice'));
147147
$this->assertTrue($this->bag->has('error'));
148148
$this->assertEquals([
149149
'notice' => ['Foo'],
150150
'error' => ['Bar'],
151-
], $this->bag->peekAll()
151+
], $this->bag->peekAll()
152152
);
153153
}
154154
}

0 commit comments

Comments
 (0)