Adds phpseclib version 3.

This commit is contained in:
2022-12-29 08:12:03 +02:00
parent d28e4c74af
commit e614f2ec23
412 changed files with 66550 additions and 477 deletions

View File

@@ -78,12 +78,13 @@ interface Tableinterface
/**
* Get all fields of an area/view/table
*
* @param string|null $table The area
* @param string $table The area
* @param bool $default Add the default fields
*
* @return ?array
* @return array|null On success an array of fields
* @since 3.2.0
*/
public function fields(string $table): ?array;
public function fields(string $table, bool $default = false): ?array;
}