This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://github.com/zendframework/zf2
- Loading branch information
95 parents
e5593b0
+
d904244
+
52367d8
+
dce778a
+
2305c94
+
052b9a4
+
ef11064
+
4efb47c
+
b3dcf28
+
778fbea
+
cdde9b4
+
6ade9b9
+
435888b
+
2ad89a8
+
e232251
+
5932189
+
d0360d2
+
52242e5
+
3804b57
+
1cecc58
+
4a4065c
+
f9b61b5
+
0a07b63
+
0e321e0
+
95ceb90
+
4380d08
+
ec9c36c
+
4de92b2
+
b6eb950
+
fca746d
+
ff69119
+
5351804
+
3617ea6
+
24c8a1f
+
0aa6c03
+
b24267c
+
beadb3c
+
51c4ced
+
d92ccc9
+
eb1f131
+
f383de1
+
abc631a
+
666ec86
+
e22a167
+
bb8b8f6
+
b55f760
+
f23a913
+
9ba9f17
+
d01f94f
+
9c4e0cc
+
63c4a7e
+
9eedf95
+
980bffb
+
03cf7b3
+
8bbf35d
+
aff3454
+
1c6567c
+
a102513
+
90b7795
+
286539e
+
7f08291
+
417d368
+
ae0f13d
+
7894420
+
8ff1b30
+
55ca16f
+
0c6cb6c
+
7010e32
+
745a36a
+
f021693
+
cd91ba2
+
5586879
+
1cd9259
+
b611b41
+
e07e054
+
7657d67
+
52b6014
+
00211c2
+
0d594de
+
f919c63
+
7e217f4
+
3e0da00
+
3723e41
+
facd3ee
+
4d8294f
+
3cdb12a
+
f09df31
+
34e6a86
+
4e1b451
+
2d3566a
+
ef9466a
+
3c172af
+
2260c5e
+
dd964bc
+
f325c01
commit 3cd4478
Showing
36 changed files
with
1,111 additions
and
1,260 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 21 additions & 24 deletions
45
src/Configuration/ConfigurationInterface.php → src/Config/ConfigInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,56 @@ | ||
<?php | ||
/** | ||
* Zend Framework | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* LICENSE | ||
* | ||
* This source file is subject to the new BSD license that is bundled | ||
* with this package in the file LICENSE.txt. | ||
* It is also available through the world-wide-webat this URL: | ||
* http://framework.zend.com/license/new-bsd | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to license@zend.com so we can send you a copy immediately. | ||
* | ||
* @category Zend | ||
* @package Zend_Session | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_Session | ||
*/ | ||
|
||
namespace Zend\Session\Configuration; | ||
namespace Zend\Session\Config; | ||
|
||
/** | ||
* Standard session configuration | ||
* | ||
* @category Zend | ||
* @package Zend_Session | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
interface ConfigurationInterface | ||
interface ConfigInterface | ||
{ | ||
public function setOptions(array $options); | ||
public function setOptions($options); | ||
public function getOptions(); | ||
|
||
public function setOption($option, $value); | ||
public function hasOption($option); | ||
public function getOption($option); | ||
public function toArray(); | ||
public function hasOption($option); | ||
|
||
public function setSavePath($savePath); | ||
public function getSavePath(); | ||
public function toArray(); | ||
|
||
public function setName($name); | ||
public function getName(); | ||
|
||
public function setSavePath($savePath); | ||
public function getSavePath(); | ||
|
||
public function setCookieLifetime($cookieLifetime); | ||
public function getCookieLifetime(); | ||
|
||
public function setCookiePath($cookiePath); | ||
public function getCookiePath(); | ||
|
||
public function setCookieDomain($cookieDomain); | ||
public function getCookieDomain(); | ||
|
||
public function setCookieSecure($cookieSecure); | ||
public function getCookieSecure(); | ||
|
||
public function setCookieHttpOnly($cookieHttpOnly); | ||
public function getCookieHttpOnly(); | ||
|
||
public function setUseCookies($useCookies); | ||
public function getUseCookies(); | ||
|
||
public function setRememberMeSeconds($rememberMeSeconds); | ||
public function getRememberMeSeconds(); | ||
} |
Oops, something went wrong.