Skip to content

Commit 7a90d5c

Browse files
committed
minor symfony#17473 fixed CS (fabpot)
This PR was merged into the 3.0 branch. Discussion ---------- fixed CS | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Commits ------- e9143fd fixed CS
2 parents 2b1daa4 + e9143fd commit 7a90d5c

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)