<?php
namespace Maatwebsite\Excel\Helpers;
use Maatwebsite\Excel\Exceptions\NoTypeDetectedException;
use Symfony\Component\HttpFoundation\File\UploadedFile;
class FileTypeDetector
{
/**
* @param $filePath
* @param string|null $type
* @return string|null
*
* @throws NoTypeDetectedException
*/
public static function detect($filePath, string $type = null)
{
if (null !== $type) {
return $type;
}
if (!$filePath instanceof UploadedFile) {
$pathInfo = pathinfo($filePath);
$extension = $pathInfo['extension'] ?? '';
} else {
$extension = $filePath->getClientOriginalExtension();
}
if (null === $type && trim($extension) === '') {
throw new NoTypeDetectedException();
}
return config('excel.extension_detector.' . strtolower($extension));
}
/**
* @param string $filePath
* @param string|null $type
* @return string
*
* @throws NoTypeDetectedException
*/
public static function detectStrict(string $filePath, string $type = null): string
{
$type = static::detect($filePath, $type);
if (!$type) {
throw new NoTypeDetectedException();
}
return $type;
}
}
Welcome to the Kueue Pay Payment Gateway Solutions Developer API Documentation. This comprehensive guide will empower you to seamlessly integrate our advanced payment gateway into your website, enhancing your customers’ payment experience and enabling efficient transaction processing. The Kueue Pay Developer API is designed for developers and entrepreneurs who seek simplicity, security, and reliability in their payment processing solutions.
The Kueue Pay Developer API allows you to seamlessly integrate Kueue Pay’s Payment Gateway Solutions into your website, enabling secure and efficient debit and credit card transactions. With our API, you can initiate payments, check payment statuses, and even process refunds, all while ensuring a smooth and streamlined payment experience for your customers.