IssueInterface.php 520 Bytes
<?php

/*
 * This file is part of StaticReview
 *
 * Copyright (c) 2014 Samuel Parkinson <@samparkinson_>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @see http://github.com/sjparkinson/static-review/blob/master/LICENSE.md
 */

namespace StaticReview\Issue;

interface IssueInterface
{
    public function getReviewName();

    public function getLevelName();

    public function getMessage();

    public function getFile();
}