Browse Source

Merge pull request #697 from DavertMik/patch-1

A simple patch to get AspectMock and Go Aop working with Yii2
tags/2.0.0-beta
Alexander Makarov 12 years ago
parent
commit
92d3c98cde
  1. 5
      framework/yii/helpers/SecurityBase.php

5
framework/yii/helpers/SecurityBase.php

@ -120,7 +120,10 @@ class SecurityBase
static $keys; static $keys;
$keyFile = Yii::$app->getRuntimePath() . '/keys.php'; $keyFile = Yii::$app->getRuntimePath() . '/keys.php';
if ($keys === null) { if ($keys === null) {
$keys = is_file($keyFile) ? require($keyFile) : array(); $keys = array();
if (is_file($keyFile)) {
$keys = require($keyFile);
}
} }
if (!isset($keys[$name])) { if (!isset($keys[$name])) {
$keys[$name] = static::generateRandomKey($length); $keys[$name] = static::generateRandomKey($length);

Loading…
Cancel
Save