public function test_array_access_set()
 {
     $this->settings['hello'] = 'world';
     $this->assertEquals('world', $this->settings->get('hello'));
 }
 /**
  * Perform any final actions for the request lifecycle.
  *
  * @param  \Symfony\Component\HttpFoundation\Request $request
  * @param  \Symfony\Component\HttpFoundation\Response $response
  * @return void
  */
 public function terminate($request, $response)
 {
     $this->settings->save();
 }
 public function test_driver_settings_with_json()
 {
     $this->settings->set('info', ['blue', 'red', 'white']);
     $this->settings->save();
     $this->assertEquals(['info' => ['blue', 'red', 'white']], $this->jsonDriver->load());
 }