mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
18 lines
276 B
PHP
18 lines
276 B
PHP
|
<?php
|
||
|
namespace GraphQL\Error;
|
||
|
|
||
|
/**
|
||
|
* Interface ClientAware
|
||
|
*
|
||
|
* @package GraphQL\Error
|
||
|
*/
|
||
|
interface ClientAware
|
||
|
{
|
||
|
/**
|
||
|
* Returns true when exception message is safe to be displayed to client
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function isClientSafe();
|
||
|
}
|