elyday /
comment-server
| 1 | <?php |
||
| 2 | |||
| 3 | namespace App\Helper; |
||
| 4 | |||
| 5 | /** |
||
| 6 | * Class FormatHelper |
||
| 7 | * @package App\Helper |
||
| 8 | * @author Lars <[email protected]> Riße |
||
| 9 | */ |
||
| 10 | class FormatHelper |
||
| 11 | { |
||
| 12 | public static function formatData($data, $success = true, $status = 200) |
||
| 13 | { |
||
| 14 | $content = array("success" => $success, "data" => $data); |
||
| 15 | |||
| 16 | return response($content, $status); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 17 | } |
||
| 18 | } |