Compare commits
No commits in common. "stable" and "2.0.0" have entirely different histories.
|
@ -2,18 +2,15 @@
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace mirzaev\yii2\sessions\arangodb;
|
namespace mirzaev\yii2\arangodb\sessions;
|
||||||
|
|
||||||
// Фреймворк Yii
|
|
||||||
use yii;
|
use yii;
|
||||||
use yii\di\Instance;
|
use yii\di\Instance;
|
||||||
use yii\base\InvalidConfigException;
|
use yii\base\InvalidConfigException;
|
||||||
|
|
||||||
// Модуль ArangoDB для фреймворка Yii
|
use mirzaev\yii2\arangodb\Connection;
|
||||||
use mirzaev\yii2\arangodb\Connection,
|
use mirzaev\yii2\arangodb\Query;
|
||||||
mirzaev\yii2\arangodb\Query;
|
|
||||||
|
|
||||||
// Встроенные библиотеки
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -47,8 +44,8 @@ use Exception;
|
||||||
*
|
*
|
||||||
* @see yii\web\DbSession Наследует, копирует (Inherit, copy)
|
* @see yii\web\DbSession Наследует, копирует (Inherit, copy)
|
||||||
*
|
*
|
||||||
* @package mirzaev\yii2\sessions\arangodb
|
* @package yii2\ArangoDB
|
||||||
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
* @author Arsen Mirzaev Tatyano-Muradovich <red@hood.su>
|
||||||
*
|
*
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,14 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Модуль ArangoDB для фреймворка Yii
|
|
||||||
use mirzaev\yii2\arangodb\Migration;
|
use mirzaev\yii2\arangodb\Migration;
|
||||||
|
|
||||||
/**
|
|
||||||
* Создание коллекции для хранения сессий
|
|
||||||
*
|
|
||||||
* @package mirzaev\yii2\sessions\arangodb
|
|
||||||
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
|
||||||
*/
|
|
||||||
class create_sessions_collection extends Migration
|
class create_sessions_collection extends Migration
|
||||||
{
|
{
|
||||||
public function up()
|
public function up()
|
||||||
|
@ -24,4 +17,4 @@ class create_sessions_collection extends Migration
|
||||||
{
|
{
|
||||||
$this->dropCollection('sessions');
|
$this->dropCollection('sessions');
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace mirzaev\yii2\sessions\arangodb;
|
namespace mirzaev\yii2\arangodb\sessions;
|
||||||
|
|
||||||
// Фреймворк Yii
|
use yii;
|
||||||
use yii,
|
|
||||||
yii\web\Session;
|
use yii\web\Session;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Базовый класс для реализации хранилища сессий
|
* Базовый класс для реализации хранилища сессий
|
||||||
|
@ -15,8 +15,7 @@ use yii,
|
||||||
*
|
*
|
||||||
* @property-read bool $useCustomStorage Разрешение использовать своё хранилища (Whether to use custom storage)
|
* @property-read bool $useCustomStorage Разрешение использовать своё хранилища (Whether to use custom storage)
|
||||||
*
|
*
|
||||||
* @package mirzaev\yii2\sessions\arangodb
|
* @author Arsen Mirzaev Tatyano-Muradovich <red@hood.su>
|
||||||
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
|
||||||
* @author Paul Klimov <klimov.paul@gmail.com>
|
* @author Paul Klimov <klimov.paul@gmail.com>
|
||||||
*/
|
*/
|
||||||
abstract class MultiFieldSession extends Session
|
abstract class MultiFieldSession extends Session
|
||||||
|
|
Loading…
Reference in New Issue