Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Mvc/Reply/Error.php
<?php

namespace XF\Mvc\Reply;

use function
is_array;

class
Error extends AbstractReply
{
    protected
$errors = [];

    public function
__construct($errors, $responseCode = 200)
    {
       
$this->setErrors($errors, false);
       
$this->setResponseCode($responseCode);
    }

    public function
getErrors()
    {
        return
$this->errors;
    }

    public function
setErrors($errors, $append = true)
    {
        if (!
is_array($errors))
        {
           
$errors = [$errors];
        }

        if (
$append)
        {
           
$this->errors = array_merge($this->errors, $errors);
        }
        else
        {
           
$this->errors = $errors;
        }
    }

    public function
addError($error)
    {
       
$this->errors[] = $error;
    }
}