Blame view

src/vendor/1.2.5/Phalcon/Session.php 597 Bytes
1ea3b987   Administrator   maby first commit
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
  <?php 
  
  namespace Phalcon {
  
  	/**
  	 * Phalcon\Session
  	 *
  	 * Session client-server persistent state data management. This component
  	 * allows you to separate your session data between application or modules.
  	 * With this, it's possible to use the same index to refer a variable
  	 * but it can be in different applications.
  	 *
  	 *<code>
  	 * $session = new Phalcon\Session\Adapter\Files(array(
  	 *    'uniqueId' => 'my-private-app'
  	 * ));
  	 *
  	 * $session->start();
  	 *
  	 * $session->set('var', 'some-value');
  	 *
  	 * echo $session->get('var');
  	 *</code>
  	 */
  	
  	abstract class Session {
  	}
  }