8000 fixed CS · symfony/symfony@68b7662 · GitHub
[go: up one dir, main page]

Skip to content

Commit 68b7662

Browse files
committed
fixed CS
1 parent 851eb73 commit 68b7662

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

src/Symfony/Bridge/Monolog/Handler/FirePHPHandler.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public function onKernelResponse(FilterResponseEvent $event)
4545
if (!preg_match('{\bFirePHP/\d+\.\d+\b}', $event->getRequest()->headers->get('User-Agent'))) {
4646
$this->sendHeaders = false;
4747
$this->headers = array();
48+
4849
return;
4950
}
5051

src/Symfony/Component/Security/Core/User/ChainUserProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function refreshUser(UserInterface $user)
6464
// try next one
6565
}
6666
}
67-
67+
6868
if ($supportedUserFound) {
6969
throw new UsernameNotFoundException(sprintf('There is no user with name "%s".', $user->getUsername()));
7070
} else {

tests/Symfony/Tests/Bridge/Doctrine/Fixtures/AssociationEntity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ class AssociationEntity
3131
* @var \Symfony\Tests\Bridge\Doctrine\Form\Fixtures\CompositeIdentEntity
3232
*/
3333
public $composite;
34-
}
34+
}

tests/Symfony/Tests/Component/HttpFoundation/SessionTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,13 @@ public function testStart()
204204
$this->assertSame(array(), $this->session->getFlashes());
205205
$this->assertSame(array(), $this->session->all());
206206
}
207-
207+
208208
public function testSavedOnDestruct()
209209
{
210210
$this->session->set('foo', 'bar');
211-
211+
212212
$this->session->__destruct();
213-
213+
214214
$expected = array(
215215
'attributes'=>array('foo'=>'bar'),
216216
'flashes'=>array(),
@@ -219,15 +219,15 @@ public function testSavedOnDestruct()
219219
$saved = $this->storage->read('_symfony2');
220220
$this->assertSame($expected, $saved);
221221
}
222-
222+
223223
public function testSavedOnDestructAfterManualSave()
224224
{
225225
$this->session->set('foo', 'nothing');
226226
$this->session->save();
227227
$this->session->set('foo', 'bar');
228-
228+
229229
$this->session->__destruct();
230-
230+
231231
$expected = array(
232232
'attributes'=>array('foo'=>'bar'),
233233
'flashes'=>array(),

tests/Symfony/Tests/Component/Routing/Matcher/UrlMatcherTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public function testMatchNonAlpha()
160160
$this->assertEquals(array('_route' => 'foo', 'foo' => $chars), $matcher->match('/'.urlencode($chars).'/bar'));
161161
$this->assertEquals(array('_route' => 'foo', 'foo' => $chars), $matcher->match('/'.strtr($chars, array('%' => '%25', '+' => '%2B')).'/bar'));
162162
}
163-
163+
164164
public function testMatchWithDotMetacharacterInRequirements()
165165
{
166166
$collection = new RouteCollection();

tests/Symfony/Tests/Component/Routing/RouteCompilerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ public function provideCompileData()
9898
)),
9999
);
100100
}
101-
}
101+
}

0 commit comments

Comments
 (0)
0