Skip to content

Commit e9143fd

Browse files
committed
fixed CS
1 parent 2b1daa4 commit e9143fd

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/Symfony/Component/Console/Tests/Input/ArrayInputTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function provideOptions()
111111
array(),
112112
array(),
113113
'->parse() does not choke on end of options signal',
114-
)
114+
),
115115
);
116116
}
117117

src/Symfony/Component/HttpFoundation/Tests/RequestTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1338,8 +1338,8 @@ public function testGetRequestFormat()
13381338
$this->assertNull($request->setRequestFormat('foo'));
13391339
$this->assertEquals('foo', $request->getRequestFormat(null));
13401340

1341-
$request = new Request(array('_format' => 'foo'));
1342-
$this->assertEquals('html', $request->getRequestFormat());
1341+
$request = new Request(array('_format' => 'foo'));
1342+
$this->assertEquals('html', $request->getRequestFormat());
13431343
}
13441344

13451345
public function testHasSession()

src/Symfony/Component/Security/Http/RememberMe/PersistentTokenBasedRememberMeServices.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
use Symfony\Component\Security\Core\Exception\CookieTheftException;
2020
use Symfony\Component\Security\Core\Authentication\RememberMe\PersistentToken;
2121
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
22-
use Psr\Log\LoggerInterface;
2322

2423
/**
2524
* Concrete implementation of the RememberMeServicesInterface which needs

0 commit comments

Comments
 (0)