lithium\storage\session\adapter\Php::_start()

protected method

Starts the session.

Returns

boolean

true if session successfully started (or has already been started), false otherwise.

Source

	protected function _start() {
		if ($this->isStarted()) {
			return true;
		}
		session_cache_limiter();
		return session_start();
	}