Skip to content

Instantly share code, notes, and snippets.

View mprince2k18's full-sized avatar
πŸͺ„
Focusing

Mohammad Prince mprince2k18

πŸͺ„
Focusing
View GitHub Profile
@mprince2k18
mprince2k18 / ModelParsingService.php
Last active March 21, 2024 04:41
ModelParsingService
<?php
namespace App\Services;
class ModelParsingService
{
public function parseModelTuple($response, $value)
{
return array_slice(is_array($value) ? $value : (array)$value, 0, 4) + array_fill(0, 4, null);
}
}