mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 12:34:18 +00:00
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Classes\General;
|
|
|
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class Helper
|
|
{
|
|
|
|
/**
|
|
* @param string $methodName
|
|
* @return string
|
|
*/
|
|
static function getPropertyName(string $methodName){
|
|
return Str::snake(str_replace('get', '', $methodName));
|
|
}
|
|
|
|
/**
|
|
* @param string $className
|
|
* @return array
|
|
*/
|
|
static function getClassMethodsArray(string $className){
|
|
return array_slice(get_class_methods($className), 1);
|
|
}
|
|
|
|
/**
|
|
* @param $log
|
|
*/
|
|
static function debugLogger($log){
|
|
if($log && isset($log['message'])){
|
|
$message = $log['message'];
|
|
$substring = 'No data were found';
|
|
if (isset($message)) {
|
|
if (strpos($message, $substring) !== false) {
|
|
// Log::info('Message exist');
|
|
} else {
|
|
Log::info($log['message']);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param ResourceCollection $collection
|
|
* @return array
|
|
*/
|
|
static function collectionResponse(ResourceCollection $collection){
|
|
return json_decode($collection->response()->getContent(), true);
|
|
}
|
|
}
|