__set_state() public static method

public static __set_state ( array $state )
$state array
 /**
  * {@inheritDoc}
  */
 public function load()
 {
     $file = file_get_contents($this->path);
     $object = json_decode($file, true);
     $object['config'] = Config::__set_state($object['config']);
     return $object;
 }