Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Api/Result/ArrayResult.php
<?php

namespace XF\Api\Result;

use function
count;

class
ArrayResult implements ResultInterface, \Countable
{
   
/**
     * @var array
     */
   
protected $result;

    public function
__construct(array $result)
    {
       
$this->result = $result;
    }

    public function
getResult()
    {
        return
$this->result;
    }

    public function
setResult(array $result)
    {
       
$this->result = $result;
    }

    public function
render()
    {
        return
$this->result;
    }

   
#[\ReturnTypeWillChange]
   
public function count()
    {
        return
count($this->result);
    }
}