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

Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[HttpFoundation] remove optional driver for now.
  • Loading branch information
Drak committed Nov 14, 2011
commit cedc1f01c2a05f2ddce839674ae2a731cdfe9131
2 changes: 1 addition & 1 deletion src/Symfony/Component/HttpFoundation/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Session implements \Serializable
* @param SessionStorageInterface $storage A SessionStorageInterface instance.
* @param FlashBagInterface $flashBag A FlashBagInterface instance.
*/
public function __construct(SessionStorageInterface $storage, FlashBagInterface $flashBag = null)
public function __construct(SessionStorageInterface $storage, FlashBagInterface $flashBag)
{
$this->storage = $storage;
$this->flashBag = $flashBag;
Expand Down