Skip to content

Instantly share code, notes, and snippets.

@sagar290
Last active July 27, 2024 13:46
Show Gist options
  • Save sagar290/88018a5162e8550f387f34f466a54316 to your computer and use it in GitHub Desktop.
Save sagar290/88018a5162e8550f387f34f466a54316 to your computer and use it in GitHub Desktop.
DTO Transformer for php
<?php
namespace App\DTO;
use App\Interfaces\ActionServiceDTOInterface;
use Illuminate\Support\Str;
class BaseDto
{
public function __construct(?array $data = null)
{
if ($data) {
foreach ($data as $key => $value) {
$value = $this->castingValue($key, $value);
$this->{Str::camel($key)} = $value;
}
}
}
public function toArray()
{
return array_reduce(array_keys(get_object_vars($this)), function ($carry, $key) {
if (
(is_object($this->{$key}) || is_string($this->{$key}))
&& method_exists($this->{$key}, 'toArray')
) {
$carry[Str::snake($key)] = $this->{$key}->toArray();
} else {
$carry[Str::snake($key)] = $this->{$key};
}
return $carry;
}, []);
}
/**
* @param string $key
* @param mixed $value
* @return array|bool|float|int|mixed|object|string
*/
public function castingValue(string $key, mixed $value): mixed
{
$type = gettype($this->{Str::camel($key)});
if ($type == 'integer') {
$value = str_replace(',','',$value); // replace all unwanted value
$value = (int)$value;
} elseif ($type == 'string') {
$value = (string)$value;
} elseif ($type == 'array') {
$value = (array)$value;
} elseif ($type == 'double') {
$value = str_replace(',','',$value); // replace all unwanted value
$value = (float)$value;
} elseif ($type == 'boolean') {
$value = str_replace(',','',$value); // replace all unwanted value
$value = (bool)$value;
}
return $value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment