![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/pda/pheanstalk/src/Response/ |
<?php namespace Pheanstalk\Response; use Pheanstalk\Contract\ResponseInterface; /** * A response with an ArrayObject interface to key => value data. * * @author Paul Annesley */ class ArrayResponse extends \ArrayObject implements ResponseInterface { private $name; /** * @param string $name * @param array $data */ public function __construct(string $name, array $data) { $this->name = $name; parent::__construct($data); } public function getResponseName(): string { return $this->name; } /** * Object property access to ArrayObject data. */ public function __get($property) { $key = $this->transformPropertyName($property); return $this[$key] ?? null; } /** * Object property access to ArrayObject data. */ public function __isset($property) { $key = $this->transformPropertyName($property); return isset($this[$key]); } // ---------------------------------------- /** * Tranform underscored property name to hyphenated array key. */ private function transformPropertyName(string $propertyName): string { return str_replace('_', '-', $propertyName); } }