2 Commits
1.0 ... 1.0.1

Author SHA1 Message Date
User
19305af62f 20230926#3 2023-09-26 21:24:37 +03:00
User
23485cd0e3 20230926#2 2023-09-26 20:54:08 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -17,5 +17,5 @@ composer require rmphp/kernel:"^1.0"
Dev version contains the latest changes
```bash
composer require rmphp/kernel:"1.0.x-dev"
composer require rmphp/kernel:"1.x-dev"
```

View File

@@ -50,7 +50,7 @@ class MysqlStorageData {
/**
* @return array
*/
public function getData() : array {
public function getData() : iterable {
if(!empty($this->arrayData)) return $this->arrayData;
if(!$this->result) return [];
$this->result->data_seek(0);