⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
vendor
/
maatwebsite
/
excel
/
src
/
View File Name :
Importer.php
<?php namespace Maatwebsite\Excel; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Support\Collection; interface Importer { /** * @param object $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string|null $readerType * @return Reader|\Illuminate\Foundation\Bus\PendingDispatch */ public function import($import, $filePath, string $disk = null, string $readerType = null); /** * @param object $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string|null $readerType * @return array */ public function toArray($import, $filePath, string $disk = null, string $readerType = null): array; /** * @param object $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string|null $readerType * @return Collection */ public function toCollection($import, $filePath, string $disk = null, string $readerType = null): Collection; /** * @param ShouldQueue $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string $readerType * @return \Illuminate\Foundation\Bus\PendingDispatch */ public function queueImport(ShouldQueue $import, $filePath, string $disk = null, string $readerType = null); }