Your IP : 216.73.216.218


Current Path : /home/antonen/poznajlitwe.lt/libraries/gantry5/classes/Gantry/Component/System/
Upload File :
Current File : /home/antonen/poznajlitwe.lt/libraries/gantry5/classes/Gantry/Component/System/Messages.php

<?php
/**
 * @package   Gantry5
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2017 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

namespace Gantry\Component\System;

class Messages
{
    protected $messages = [];

    public function add($message, $type = 'warning')
    {
        $this->messages[] = ['type' => $type, 'message' => $message];

        return $this;
    }

    public function get()
    {
        return $this->messages;
    }

    public function clean()
    {
        $this->messages = [];

        return $this;
    }
}