Skip to content

Commit d491bff

Browse files
committed
fix(ci): Fix compatibility with service class
1 parent a08ae46 commit d491bff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WithExportQueue.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ trait WithExportQueue
1414
/**
1515
* Process dataTables needed render output.
1616
*
17-
* @param string $view
17+
* @param string|null $view
1818
* @param array $data
1919
* @param array $mergeData
2020
* @return mixed
2121
*
2222
* @throws \Throwable
2323
*/
24-
public function render($view, $data = [], $mergeData = [])
24+
public function render(string $view = null, array $data = [], array $mergeData = [])
2525
{
2626
if (request()->ajax() && request('action') == 'exportQueue') {
2727
return $this->exportQueue();

0 commit comments

Comments
 (0)