mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 00:07:26 +00:00
14 lines
266 B
PHP
14 lines
266 B
PHP
<?php
|
|
namespace JakubOnderka\PhpParallelLint\Contracts;
|
|
|
|
use JakubOnderka\PhpParallelLint\SyntaxError;
|
|
|
|
interface SyntaxErrorCallback
|
|
{
|
|
/**
|
|
* @param SyntaxError $error
|
|
* @return SyntaxError
|
|
*/
|
|
public function errorFound(SyntaxError $error);
|
|
}
|