Your IP : 3.15.219.130


Current Path : /proc/self/root/home/sudancam/public_html/wp-content/plugins/wp-rss-aggregator/vendor/dhii/exception/src/
Upload File :
Current File : //proc/self/root/home/sudancam/public_html/wp-content/plugins/wp-rss-aggregator/vendor/dhii/exception/src/SubjectAwareTrait.php

<?php

namespace Dhii\Exception;

/**
 * Functionality for subject awareness.
 *
 * @since [*next-version*]
 */
trait SubjectAwareTrait
{
    /**
     * The subject associated with this instance.
     *
     * @since [*next-version*]
     *
     * @var mixed
     */
    protected $subject;

    /**
     * Retrieves the subject.
     *
     * @since [*next-version*]
     *
     * @return mixed The subject
     */
    protected function _getSubject()
    {
        return $this->subject;
    }

    /**
     * Assigns the subject.
     *
     * @since [*next-version*]
     *
     * @return $this
     */
    protected function _setSubject($subject)
    {
        $this->subject = $subject;

        return $this;
    }
}