Skip to content

Commit 1233baa

Browse files
committed
CS: unalign =>
1 parent db24362 commit 1233baa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Symfony/Bundle/FrameworkBundle/Translation/PhpStringTokenParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class PhpStringTokenParser
5151
{
5252
protected static $replacements = array(
5353
'\\' => '\\',
54-
'$' => '$',
54+
'$' => '$',
5555
'n' => "\n",
5656
'r' => "\r",
5757
't' => "\t",

src/Symfony/Bundle/SecurityBundle/Tests/Functional/FirewallEntryPointTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function testItUsesTheConfiguredEntryPointWhenUsingUnknownCredentials()
2222

2323
$client->request('GET', '/secure/resource', array(), array(), array(
2424
'PHP_AUTH_USER' => 'unknown',
25-
'PHP_AUTH_PW' => 'credentials',
25+
'PHP_AUTH_PW' => 'credentials',
2626
));
2727

2828
$this->assertEquals(

src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public function write($sessionId, $data)
155155
public function read($sessionId)
156156
{
157157
$dbData = $this->getCollection()->findOne(array(
158-
$this->options['id_field'] => $sessionId,
158+
$this->options['id_field'] => $sessionId,
159159
$this->options['expiry_field'] => array('$gte' => new \MongoDate()),
160160
));
161161

src/Symfony/Component/Validator/Tests/ConstraintViolationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function testToStringHandlesArrayRoots()
4040
'42 cannot be used here',
4141
'this is the message template',
4242
array(),
43-
array('some_value' => 42),
43+
array('some_value' => 42),
4444
'some_value',
4545
null
4646
);

0 commit comments

Comments
 (0)