for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Copyright (c) Nate Brunette.
* Distributed under the MIT License (http://opensource.org/licenses/MIT)
*/
declare(strict_types=1);
namespace Tebru\Gson\Internal\AccessorStrategy;
use Tebru\Gson\Internal\SetterStrategy;
/**
* Class SetByPublicProperty
*
* This class contains public properties to improve performance.
* @author Nate Brunette <[email protected]>
final class SetByPublicProperty implements SetterStrategy
{
* @var string
public $propertyName;
* Constructor
* @param string $propertyName
public function __construct(string $propertyName)
$this->propertyName = $propertyName;
}
* Set value to object by method name
* @param object $object
* @param mixed $value
* @return void
public function set($object, $value): void
$object->{$this->propertyName} = $value;