Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 27530cb

Browse files
author
Drak
committed
[HttpFoundation] Moved session related classes to own sub-namespace.
1 parent 4683915 commit 27530cb

File tree

56 files changed

+136
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+136
-166
lines changed

CHANGELOG-2.1.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
229229
* removed the ContentTypeMimeTypeGuesser class as it is deprecated and never used on PHP 5.3
230230
* added ResponseHeaderBag::makeDisposition() (implements RFC 6266)
231231
* made mimetype to extension conversion configurable
232+
* [BC BREAK] Moved all session related classes and interfaces into own namespace, as
233+
`Symfony\Component\HttpFoudation\Session`.
232234
* Flashes are now stored as a bucket of messages per `$type` so there can be multiple messages per type.
233235
There are four interface constants for type, `FlashBagInterface::INFO`, `FlashBagInterface::NOTICE`,
234236
`FlashBagInterface::WARNING` and `FlashBagInterface::ERROR`.

UPGRADE-2.1.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ UPGRADE FROM 2.0 to 2.1
270270
.. note::
271271

272272
The Flash Message API provides constants which you can optionally use. For example
273-
`Symfony\Component\HttpFoundation\SessionFlash\FlashBag::NOTICE`, which can also be abbreviated to
274-
`FlashBag::NOTICE` providing you declare `<?php use Symfony\Component\HttpFoundation\SessionFlash\FlashBag; ?>`
273+
`Symfony\Component\HttpFoundation\Session\Flash\FlashBag::NOTICE`, which can also be abbreviated to
274+
`FlashBag::NOTICE` providing you declare `<?php use Symfony\Component\HttpFoundation\Session\Flash\FlashBag; ?>`
275275
at the beginning of the PHP template.
276276

277277
Before (Twig):
@@ -301,7 +301,7 @@ UPGRADE FROM 2.0 to 2.1
301301
.. note::
302302

303303
You can optionally use constants in Twig templates using `constant()` e.g.
304-
`constant('Symfony\Component\HttpFoundation\SessionFlash\FlashBag::NOTICE')`.
304+
`constant('Symfony\Component\HttpFoundation\Session\Flash\FlashBag::NOTICE')`.
305305

306306
* Session object
307307

@@ -313,12 +313,12 @@ UPGRADE FROM 2.0 to 2.1
313313
* Session storage drivers
314314

315315
Session storage drivers should inherit from
316-
`Symfony\Component\HttpFoundation\SessionStorage\AbstractSessionStorage`
316+
`Symfony\Component\HttpFoundation\Session\Storage\AbstractSessionStorage`
317317
and no longer should implement `read()`, `write()`, `remove()` which were removed from the
318318
`SessionStorageInterface`.
319319

320320
Any session storage driver that wants to use custom save handlers should
321-
implement `Symfony\Component\HttpFoundation\SessionStorage\SessionSaveHandlerInterface`
321+
implement `Symfony\Component\HttpFoundation\Session\Storage\SessionSaveHandlerInterface`
322322

323323
### [FrameworkBundle]
324324

src/Symfony/Bridge/Doctrine/HttpFoundation/DbalSessionStorage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
namespace Symfony\Bridge\Doctrine\HttpFoundation;
44

55
use Doctrine\DBAL\Platforms\MySqlPlatform;
6-
use Symfony\Component\HttpFoundation\SessionStorage\AbstractSessionStorage;
7-
use Symfony\Component\HttpFoundation\SessionStorage\SessionSaveHandlerInterface;
6+
use Symfony\Component\HttpFoundation\Session\Storage\AbstractSessionStorage;
7+
use Symfony\Component\HttpFoundation\Session\Storage\SessionSaveHandlerInterface;
88
use Doctrine\DBAL\Driver\Connection;
99

1010
/**

src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ private function registerSessionConfiguration(array $config, ContainerBuilder $c
301301

302302
$this->addClassesToCompile(array(
303303
'Symfony\\Bundle\\FrameworkBundle\\EventListener\\SessionListener',
304-
'Symfony\\Component\\HttpFoundation\\SessionStorage\\SessionStorageInterface',
304+
'Symfony\\Component\\HttpFoundation\\Session\Storage\\SessionStorageInterface',
305305
$container->getDefinition('session')->getClass(),
306306
));
307307

src/Symfony/Bundle/FrameworkBundle/Resources/config/session.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
66

77
<parameters>
8-
<parameter key="session.class">Symfony\Component\HttpFoundation\Session</parameter>
9-
<parameter key="session.flashbag.class">Symfony\Component\HttpFoundation\SessionFlash\FlashBag</parameter>
10-
<parameter key="session.attribute_bag.class">Symfony\Component\HttpFoundation\SessionAttribute\AttributeBag</parameter>
11-
<parameter key="session.storage.native_file.class">Symfony\Component\HttpFoundation\SessionStorage\NativeFileSessionStorage</parameter>
12-
<parameter key="session.storage.null.class">Symfony\Component\HttpFoundation\SessionStorage\NullSessionStorage</parameter>
13-
<parameter key="session.storage.native_memcache.class">Symfony\Component\HttpFoundation\SessionStorage\NativeMemcacheSessionStorage</parameter>
14-
<parameter key="session.storage.native_memcached.class">Symfony\Component\HttpFoundation\SessionStorage\NativeMemcachedSessionStorage</parameter>
15-
<parameter key="session.storage.native_sqlite.class">Symfony\Component\HttpFoundation\SessionStorage\NativeSqliteSessionStorage</parameter>
16-
<parameter key="session.storage.memcache.class">Symfony\Component\HttpFoundation\SessionStorage\MemcacheSessionStorage</parameter>
17-
<parameter key="session.storage.memcached.class">Symfony\Component\HttpFoundation\SessionStorage\MemcachedSessionStorage</parameter>
18-
<parameter key="session.storage.mock_file.class">Symfony\Component\HttpFoundation\SessionStorage\MockFileSessionStorage</parameter>
8+
<parameter key="session.class">Symfony\Component\HttpFoundation\Session\Session</parameter>
9+
<parameter key="session.flashbag.class">Symfony\Component\HttpFoundation\Session\Flash\FlashBag</parameter>
10+
<parameter key="session.attribute_bag.class">Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag</parameter>
11+
<parameter key="session.storage.native_file.class">Symfony\Component\HttpFoundation\Session\Storage\NativeFileSessionStorage</parameter>
12+
<parameter key="session.storage.null.class">Symfony\Component\HttpFoundation\Session\Storage\NullSessionStorage</parameter>
13+
<parameter key="session.storage.native_memcache.class">Symfony\Component\HttpFoundation\Session\Storage\NativeMemcacheSessionStorage</parameter>
14+
<parameter key="session.storage.native_memcached.class">Symfony\Component\HttpFoundation\Session\Storage\NativeMemcachedSessionStorage</parameter>
15+
<parameter key="session.storage.native_sqlite.class">Symfony\Component\HttpFoundation\Session\Storage\NativeSqliteSessionStorage</parameter>
16+
<parameter key="session.storage.memcache.class">Symfony\Component\HttpFoundation\Session\Storage\MemcacheSessionStorage</parameter>
17+
<parameter key="session.storage.memcached.class">Symfony\Component\HttpFoundation\Session\Storage\MemcachedSessionStorage</parameter>
18+
<parameter key="session.storage.mock_file.class">Symfony\Component\HttpFoundation\Session\Storage\MockFileSessionStorage</parameter>
1919
<parameter key="session.memcache.class">Memcache</parameter>
2020
<parameter key="session.memcached.class">Memcached</parameter>
2121

src/Symfony/Bundle/FrameworkBundle/Templating/GlobalVariables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function getRequest()
7979
/**
8080
* Returns the current session.
8181
*
82-
* @return Symfony\Component\HttpFoundation\Session|void The session
82+
* @return Symfony\Component\HttpFoundation\Session\Session|void The session
8383
*/
8484
public function getSession()
8585
{

src/Symfony/Bundle/FrameworkBundle/Templating/Helper/SessionHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\Component\Templating\Helper\Helper;
1515
use Symfony\Component\HttpFoundation\Request;
16-
use Symfony\Component\HttpFoundation\SessionFlash\FlashBagInterface;
16+
use Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface;
1717

1818
/**
1919
* SessionHelper provides read-only access to the session attributes.

src/Symfony/Bundle/FrameworkBundle/Tests/EventListener/TestSessionListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private function sessionMustBeSaved()
9494

9595
private function getSession()
9696
{
97-
return $this->getMockBuilder('Symfony\Component\HttpFoundation\Session')
97+
return $this->getMockBuilder('Symfony\Component\HttpFoundation\Session\Session')
9898
->disableOriginalConstructor()
9999
->getMock();
100100
}

src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/SessionHelperTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper;
1313

1414
use Symfony\Component\HttpFoundation\Request;
15-
use Symfony\Component\HttpFoundation\Session;
16-
use Symfony\Component\HttpFoundation\SessionStorage\MockArraySessionStorage;
15+
use Symfony\Component\HttpFoundation\Session\Session;
16+
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
1717
use Symfony\Bundle\FrameworkBundle\Templating\Helper\SessionHelper;
18-
use Symfony\Component\HttpFoundation\SessionFlash\FlashBag;
19-
use Symfony\Component\HttpFoundation\SessionAttribute\AttributeBag;
18+
use Symfony\Component\HttpFoundation\Session\Flash\FlashBag;
19+
use Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag;
2020

2121
class SessionHelperTest extends \PHPUnit_Framework_TestCase
2222
{

src/Symfony/Bundle/FrameworkBundle/Tests/Templating/PhpEngineTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
use Symfony\Bundle\FrameworkBundle\Templating\PhpEngine;
1515
use Symfony\Component\DependencyInjection\Container;
1616
use Symfony\Component\HttpFoundation\Request;
17-
use Symfony\Component\HttpFoundation\Session;
18-
use Symfony\Component\HttpFoundation\SessionStorage\MockArraySessionStorage;
17+
use Symfony\Component\HttpFoundation\Session\Session;
18+
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
1919
use Symfony\Component\Templating\TemplateNameParser;
2020
use Symfony\Bundle\FrameworkBundle\Templating\GlobalVariables;
2121
use Symfony\Bundle\FrameworkBundle\Tests\TestCase;

src/Symfony/Bundle/TwigBundle/Tests/TwigEngineTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
use Symfony\Bundle\TwigBundle\TwigEngine;
1515
use Symfony\Component\DependencyInjection\Container;
1616
use Symfony\Component\HttpFoundation\Request;
17-
use Symfony\Component\HttpFoundation\Session;
18-
use Symfony\Component\HttpFoundation\SessionStorage\MockArraySessionStorage;
17+
use Symfony\Component\HttpFoundation\Session\Session;
18+
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
1919
use Symfony\Component\Templating\TemplateNameParser;
2020
use Symfony\Bundle\FrameworkBundle\Templating\GlobalVariables;
2121

src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\HttpKernel\HttpKernelInterface;
1616
use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
1717
use Symfony\Bundle\TwigBundle\TwigEngine;
18-
use Symfony\Component\HttpFoundation\SessionFlash\AutoExpireFlashBag;
18+
use Symfony\Component\HttpFoundation\Session\Flash\AutoExpireFlashBag;
1919

2020
/**
2121
* WebDebugToolbarListener injects the Web Debug Toolbar.

src/Symfony/Bundle/WebProfilerBundle/Tests/EventListener/WebDebugToolbarListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public function testToolbarIsNotInjectedOnNonHtmlRequests()
177177

178178
protected function getRequestMock($isXmlHttpRequest = false, $requestFormat = 'html')
179179
{
180-
$session = $this->getMock('Symfony\Component\HttpFoundation\Session', array(), array(), '', false);
180+
$session = $this->getMock('Symfony\Component\HttpFoundation\Session\Session', array(), array(), '', false);
181181
$request = $this->getMock(
182182
'Symfony\Component\HttpFoundation\Request',
183183
array('getSession', 'isXmlHttpRequest', 'getRequestFormat'),

src/Symfony/Component/Form/Extension/Csrf/CsrfProvider/SessionCsrfProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Component\Form\Extension\Csrf\CsrfProvider;
1313

14-
use Symfony\Component\HttpFoundation\Session;
14+
use Symfony\Component\HttpFoundation\Session\Session;
1515

1616
/**
1717
* This provider uses a Symfony2 Session object to retrieve the user's

src/Symfony/Component/HttpFoundation/Request.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Component\HttpFoundation;
1313

14-
use Symfony\Component\HttpFoundation\SessionInterface;
14+
use Symfony\Component\HttpFoundation\Session\SessionInterface;
1515

1616
/**
1717
* Request represents an HTTP request.
@@ -124,7 +124,7 @@ class Request
124124
protected $format;
125125

126126
/**
127-
* @var \Symfony\Component\HttpFoundation\SessionInterface
127+
* @var \Symfony\Component\HttpFoundation\Session\SessionInterface
128128
*/
129129
protected $session;
130130

src/Symfony/Component/HttpFoundation/SessionAttribute/AttributeBag.php renamed to src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionAttribute;
12+
namespace Symfony\Component\HttpFoundation\Session\Attribute;
1313

1414
/**
1515
* This class relates to session attribute storage

src/Symfony/Component/HttpFoundation/SessionAttribute/AttributeBagInterface.php renamed to src/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBagInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionAttribute;
12+
namespace Symfony\Component\HttpFoundation\Session\Attribute;
1313

14-
use Symfony\Component\HttpFoundation\SessionBagInterface;
14+
use Symfony\Component\HttpFoundation\Session\SessionBagInterface;
1515

1616
/**
1717
* Attributes store.

src/Symfony/Component/HttpFoundation/SessionAttribute/NamespacedAttributeBag.php renamed to src/Symfony/Component/HttpFoundation/Session/Attribute/NamespacedAttributeBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionAttribute;
12+
namespace Symfony\Component\HttpFoundation\Session\Attribute;
1313

1414
/**
1515
* This class provides structured storage of session attributes using

src/Symfony/Component/HttpFoundation/SessionFlash/AutoExpireFlashBag.php renamed to src/Symfony/Component/HttpFoundation/Session/Flash/AutoExpireFlashBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionFlash;
12+
namespace Symfony\Component\HttpFoundation\Session\Flash;
1313

1414
/**
1515
* AutoExpireFlashBag flash message container.

src/Symfony/Component/HttpFoundation/SessionFlash/FlashBag.php renamed to src/Symfony/Component/HttpFoundation/Session/Flash/FlashBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionFlash;
12+
namespace Symfony\Component\HttpFoundation\Session\Flash;
1313

1414
/**
1515
* FlashBag flash message container.

src/Symfony/Component/HttpFoundation/SessionFlash/FlashBagInterface.php renamed to src/Symfony/Component/HttpFoundation/Session/Flash/FlashBagInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionFlash;
12+
namespace Symfony\Component\HttpFoundation\Session\Flash;
1313

14-
use Symfony\Component\HttpFoundation\SessionBagInterface;
14+
use Symfony\Component\HttpFoundation\Session\SessionBagInterface;
1515

1616
/**
1717
* FlashBagInterface.

src/Symfony/Component/HttpFoundation/Session.php renamed to src/Symfony/Component/HttpFoundation/Session/Session.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation;
13-
14-
use Symfony\Component\HttpFoundation\SessionStorage\SessionStorageInterface;
15-
use Symfony\Component\HttpFoundation\SessionAttribute\AttributeBag;
16-
use Symfony\Component\HttpFoundation\SessionAttribute\AttributeBagInterface;
17-
use Symfony\Component\HttpFoundation\SessionFlash\FlashBag;
18-
use Symfony\Component\HttpFoundation\SessionFlash\FlashBagInterface;
19-
use Symfony\Component\HttpFoundation\SessionBagInterface;
12+
namespace Symfony\Component\HttpFoundation\Session;
13+
14+
use Symfony\Component\HttpFoundation\Session\Storage\SessionStorageInterface;
15+
use Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag;
16+
use Symfony\Component\HttpFoundation\Session\Attribute\AttributeBagInterface;
17+
use Symfony\Component\HttpFoundation\Session\Flash\FlashBag;
18+
use Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface;
19+
use Symfony\Component\HttpFoundation\Session\SessionBagInterface;
2020

2121
/**
2222
* Session.

src/Symfony/Component/HttpFoundation/SessionBagInterface.php renamed to src/Symfony/Component/HttpFoundation/Session/SessionBagInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation;
12+
namespace Symfony\Component\HttpFoundation\Session;
1313

1414
/**
1515
* Session Bag store.

src/Symfony/Component/HttpFoundation/SessionInterface.php renamed to src/Symfony/Component/HttpFoundation/Session/SessionInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation;
12+
namespace Symfony\Component\HttpFoundation\Session;
1313

14-
use Symfony\Component\HttpFoundation\SessionStorage\AttributeInterface;
15-
use Symfony\Component\HttpFoundation\SessionFlash\FlashBagInterface;
14+
use Symfony\Component\HttpFoundation\Session\Storage\AttributeInterface;
15+
use Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface;
1616

1717
/**
1818
* Interface for the session.

src/Symfony/Component/HttpFoundation/SessionStorage/AbstractSessionStorage.php renamed to src/Symfony/Component/HttpFoundation/Session/Storage/AbstractSessionStorage.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionStorage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage;
1313

14-
use Symfony\Component\HttpFoundation\SessionFlash\FlashBag;
15-
use Symfony\Component\HttpFoundation\SessionFlash\FlashBagInterface;
16-
use Symfony\Component\HttpFoundation\SessionAttribute\AttributeBag;
17-
use Symfony\Component\HttpFoundation\SessionAttribute\AttributeBagInterface;
18-
use Symfony\Component\HttpFoundation\SessionBagInterface;
14+
use Symfony\Component\HttpFoundation\Session\Flash\FlashBag;
15+
use Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface;
16+
use Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag;
17+
use Symfony\Component\HttpFoundation\Session\Attribute\AttributeBagInterface;
18+
use Symfony\Component\HttpFoundation\Session\SessionBagInterface;
1919

2020
/**
2121
* This provides a base class for session attribute storage.

src/Symfony/Component/HttpFoundation/SessionStorage/MemcacheSessionStorage.php renamed to src/Symfony/Component/HttpFoundation/Session/Storage/MemcacheSessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionStorage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage;
1313

1414
/**
1515
* MemcacheSessionStorage.

src/Symfony/Component/HttpFoundation/SessionStorage/MemcachedSessionStorage.php renamed to src/Symfony/Component/HttpFoundation/Session/Storage/MemcachedSessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionStorage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage;
1313

1414
/**
1515
* MemcachedSessionStorage.

src/Symfony/Component/HttpFoundation/SessionStorage/MockArraySessionStorage.php renamed to src/Symfony/Component/HttpFoundation/Session/Storage/MockArraySessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionStorage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage;
1313

1414
/**
1515
* MockArraySessionStorage mocks the session for unit tests.

src/Symfony/Component/HttpFoundation/SessionStorage/MockFileSessionStorage.php renamed to src/Symfony/Component/HttpFoundation/Session/Storage/MockFileSessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionStorage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage;
1313

1414
/**
1515
* MockFileSessionStorage is used to mock sessions for

src/Symfony/Component/HttpFoundation/SessionStorage/NativeFileSessionStorage.php renamed to src/Symfony/Component/HttpFoundation/Session/Storage/NativeFileSessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionStorage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage;
1313

1414
/**
1515
* NativeFileSessionStorage.

src/Symfony/Component/HttpFoundation/SessionStorage/NativeMemcacheSessionStorage.php renamed to src/Symfony/Component/HttpFoundation/Session/Storage/NativeMemcacheSessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionStorage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage;
1313

1414
/**
1515
* NativeMemcacheSessionStorage.

src/Symfony/Component/HttpFoundation/SessionStorage/NativeMemcachedSessionStorage.php renamed to src/Symfony/Component/HttpFoundation/Session/Storage/NativeMemcachedSessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\SessionStorage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage;
1313

1414
/**
1515
* NativeMemcachedSessionStorage.

0 commit comments

Comments
 (0)