* * 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(); }