Laravel version update

Laravel version update
This commit is contained in:
Manish Verma
2018-08-06 18:48:58 +05:30
parent d143048413
commit 126fbb0255
13678 changed files with 1031482 additions and 778530 deletions

View File

@@ -1,31 +1,31 @@
<?php namespace LaravelFCM\Response;
<?php
namespace LaravelFCM\Response;
/**
* Interface TopicResponseContract
*
* @package LaravelFCM\Response
* Interface TopicResponseContract.
*/
interface TopicResponseContract {
interface TopicResponseContract
{
/**
* true if topic sent with success.
*
* @return bool
*/
public function isSuccess();
/**
* true if topic sent with success
* @return bool
*/
public function isSuccess();
/**
* return error message
* you should test if it's necessary to resent it.
*
* @return string error
*/
public function error();
/**
* return error message
* you should test if it's necessary to resent it
*
* @return string error
*/
public function error();
/**
* return true if it's necessary resent it using exponential backoff
*
* @return bool
*/
public function shouldRetry();
}
/**
* return true if it's necessary resent it using exponential backoff.
*
* @return bool
*/
public function shouldRetry();
}