We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b1cf7 commit 87cdcdeCopy full SHA for 87cdcde
src/Settings.php
@@ -18,11 +18,11 @@
18
class Settings extends \yii\base\Component
19
{
20
/**
21
- * @var string $tableName
+ * @var string $tableName Table name
22
*/
23
public $tableName = 'settings';
24
25
- * @var string $cacheName
+ * @var string $cacheName A key identifying the values to be cached
26
27
public $cacheName = 'settings';
28
tests/config/console.php
@@ -20,6 +20,9 @@
],
'settings' => [
'class' => 'rkit\settings\Settings',
+ //'cache' => '…', // cache component name
+ //'tableName' => '…' // table name
+ //'cacheName' => '…' // a key identifying the values to be cached
]
];
0 commit comments