dependencies-upgrade

This commit is contained in:
RafficMohammed
2023-01-08 02:20:59 +05:30
parent 7870479b18
commit 49021a4497
1711 changed files with 74994 additions and 70803 deletions

View File

@@ -29,8 +29,8 @@ interface DataTable
* Set auto filter off and run your own filter.
* Overrides global search.
*
* @param callable $callback
* @param bool $globalSearch
* @param callable $callback
* @param bool $globalSearch
* @return $this
*/
public function filter(callable $callback, $globalSearch = false);
@@ -66,7 +66,7 @@ interface DataTable
/**
* Organizes works.
*
* @param bool $mDataSupport
* @param bool $mDataSupport
* @return \Illuminate\Http\JsonResponse
*/
public function make($mDataSupport = true);

View File

@@ -0,0 +1,13 @@
<?php
namespace Yajra\DataTables\Contracts;
interface Formatter
{
/**
* @param mixed $value
* @param mixed $row
* @return string
*/
public function format($value, $row);
}