Icicle\Concurrent\Sync\SharedMemoryParcel::__debugInfo PHP Метод

__debugInfo() публичный Метод

Gets information about the object for debugging purposes.
public __debugInfo ( ) : array
Результат array An array of debugging information.
    public function __debugInfo()
    {
        if ($this->isFreed()) {
            return ['id' => $this->key, 'object' => null, 'freed' => true];
        }
        return ['id' => $this->key, 'object' => $this->unwrap(), 'freed' => false];
    }