21 lines
374 B
PHP
21 lines
374 B
PHP
<?php
|
|
|
|
use hood\vk\core;
|
|
use hood\vk\api\settings;
|
|
|
|
require './vendor/autoload.php';
|
|
|
|
$core = core::init();
|
|
|
|
$robot = $core->group(12312)->key(1);
|
|
$robot = $core->group(12312)->key(1);
|
|
$robot = $core->group()->key(1);
|
|
$robot = $core->group()->key(1);
|
|
|
|
$settings = new settings($robot);
|
|
|
|
$settings['data']['test']['a'] = 2;
|
|
$settings['data'] = 2;
|
|
|
|
var_export($core->read());
|