Skip to content

Commit c6f846e

Browse files
authored
Update README.md
1 parent 7149868 commit c6f846e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

beta/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ function __construct($con = null, $table_name = null, $ext = null, $fname = null
77
```
88
var _**con**_ (Object) => MySQLi or PDO connection already opened. (N.B. It is recommended that you use the connection to the database inside the class) [READ CON SECTION](#con)
99

10-
var _**table_name**_ (String or Array) => The tables that you want to backup. [READ TABLE SECTION]()
10+
var _**table_name**_ (String or Array) => The tables that you want to backup. [READ TABLE SECTION](#-table_name)
1111

12-
var _**ext**_ (_String or Array_) [NEW VERSION >= V1.0.7] => The extension of the destination file. [READ EXT SECTION]()
12+
var _**ext**_ (_String or Array_) [NEW VERSION >= V1.0.7] => The extension of the destination file. [READ EXT SECTION](#execute)
1313

1414
var _**fname**_ (String) => The name of the output file/directory secondary
1515

1616
var _**folder**_ (String) => The folder where the files will be saved
1717

18-
var _**query_limit**_ (Int) => Number of queries at a time to execute in SQL [READ QUERY LIMIT SECTION]()
18+
var _**query_limit**_ (Int) => Number of queries at a time to execute in SQL [READ QUERY LIMIT SECTION](#query_limit)
1919

2020
var _**archive**_ (Bool) => It results as an archive. (.zip|.tar)
2121

2222
var _**phpadmin**_ (Bool) => If set to true as a result a file that can be imported with phpadmin (sql|csv)
2323

24-
var _**save**_ (Bool) => If set to false, the result will not be saved but will be loaded on the variable of class sql, csv, json (Based on request) [READ SAVE SECTION]()
24+
var _**save**_ (Bool) => If set to false, the result will not be saved but will be loaded on the variable of class sql, csv, json (Based on request) [READ SAVE SECTION](#save)
2525

2626
var _**sql_unique**_ (Bool) => If set to true the SQL dump is a single file with all the tables. (Valid only for the SQL format)
2727

@@ -44,7 +44,7 @@ $backup = new SQL_Backup();
4444
* @var $NAME string The MySQL database name.
4545
* @var $PORT int The port number to use when connecting to the database server otherwise it uses the default port
4646
* @var $SOCK string The socket name to use when connecting to a local database server otherwise it uses the default socket.
47-
* @result Bool | object
47+
* @return Bool | object
4848
**/
4949

5050
public function con($HOST, $USER, $PASSWD, $NAME, $PORT = null, $SOCK = null) {}
@@ -80,7 +80,7 @@ $backup->con($HOST,$USER,$PASSWD,$NAME);
8080
``` php
8181
/*
8282
* @var $debug Bool (True|False)
83-
* @result Bool | Array
83+
* @return Bool | Array
8484
*/
8585
public function execute($debug = false) {}
8686
```

0 commit comments

Comments
 (0)