Skip to content

Commit 4a9c897

Browse files
@return type updated for IDE Hinting
1 parent b10a796 commit 4a9c897

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/DBExport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,7 @@ public function __construct($connection = null, $saveAsFileType = null, ?int $re
117117
*
118118
* @param string $backupDir Directory to store the backup
119119
*
120-
* @return \Tamedevelopers\Support\Collections\Collection
121-
* [status, message, path]
120+
* @return \Tamedevelopers\Support\Collections\Collection|mixed {status, message, path}
122121
*
123122
* @throws \RuntimeException
124123
*/

src/DBImport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function run()
9191
* Run the database import process.
9292
* @param string|null path
9393
*
94-
* @return object
94+
* @return \Tamedevelopers\Support\Collections\Collection|mixed {status, message}
9595
* [status, message]
9696
*/
9797
protected function import($path = null)

src/DBSchemaExport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ public function __construct($connection = null, $path = null, $type = null)
109109
* @param array|null $onlyTables List of tables to include (null = all)
110110
* @param array|null $exceptTables List of tables to exclude
111111
*
112-
* @return \Tamedevelopers\Support\Collections\Collection
113-
* [status, path, message]
112+
* @return \Tamedevelopers\Support\Collections\Collection|mixed {status, message, path}
114113
*/
115114
public function run($onlyTables = null, $exceptTables = null)
116115
{

0 commit comments

Comments
 (0)