3cf19d8656
This pull request applies code style fixes from an analysis carried out by [StyleCI](https://github.styleci.io). --- For more information, click [here](https://github.styleci.io/analyses/8wKwbZ).
20 lines
409 B
PHP
20 lines
409 B
PHP
<?php
|
|
/**
|
|
* @Author: printempw
|
|
* @Date: 2016-08-11 13:08:13
|
|
* @Last Modified by: printempw
|
|
* @Last Modified time: 2016-08-29 13:47:13
|
|
*/
|
|
$options = [
|
|
'avatar_query_string' => '0',
|
|
'version' => '',
|
|
'check_update' => '1',
|
|
'update_source' => 'github',
|
|
];
|
|
|
|
foreach ($options as $key => $value) {
|
|
Option::set($key, $value);
|
|
}
|
|
|
|
Option::set('version', '3.0.2');
|