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\GetterStrategy;
/**
* Class GetByMethod
*
* Get data from an object using a public method
* This class contains public properties to improve performance.
* @author Nate Brunette <[email protected]>
final class GetByMethod implements GetterStrategy
{
* The name of the method
* @var string
public $methodName;
* Constructor
* @param string $methodName
public function __construct(string $methodName)
$this->methodName = $methodName;
}
* Get value from object by method name
* @param object $object
* @return mixed
public function get($object)
return $object->{$this->methodName}();