mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-13 13:46:13 +00:00
17 lines
327 B
PHP
17 lines
327 B
PHP
<?php
|
|
|
|
namespace Anikeen\Id\Concerns;
|
|
|
|
use stdClass;
|
|
|
|
trait MagicProperties
|
|
{
|
|
protected function setMagicProperties(stdClass $data): void
|
|
{
|
|
foreach ($data as $key => $value) {
|
|
if (property_exists($this, $key)) {
|
|
$this->{$key} = $value;
|
|
}
|
|
}
|
|
}
|
|
} |