BagInterface.php
1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php 
namespace Phalcon\Session {
	/**
	 * Phalcon\Session\BagInterface initializer
	 */
	
	interface BagInterface {
		/**
		 * Initializes the session bag. This method must not be called directly, the class calls it when its internal data is accesed
		 */
		public function initialize();
		/**
		 * Destroyes the session bag
		 */
		public function destroy();
		/**
		 * Setter of values
		 *
		 * @param string $property
		 * @param string $value
		 */
		public function set($property, $value);
		/**
		 * Getter of values
		 *
		 * @param string $property
		 * @param mixed $defaultValue
		 * @return mixed
		 */
		public function get($property, $defaultValue=null);
		/**
		 * Isset property
		 *
		 * @param string $property
		 * @return boolean
		 */
		public function has($property);
		/**
		 * Setter of values
		 *
		 * @param string $property
		 * @param string $value
		 */
		public function __set($property, $value);
		/**
		 * Getter of values
		 *
		 * @param string $property
		 * @return mixed
		 */
		public function __get($property);
		/**
		 * Isset property
		 *
		 * @param string $property
		 * @return boolean
		 */
		public function __isset($property);
	}
}