for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Unified push notification services abstraction (http://github.com/juliangut/tify).
*
* @license BSD-3-Clause
* @link https://github.com/juliangut/tify
* @author Julián Gutiérrez <[email protected]>
*/
namespace Jgut\Tify\Receiver\Traits;
/**
* Token aware trait.
trait TokenTrait
{
* Receiver token.
* @var string
protected $token;
* Get token.
* @return string
public function getToken()
return $this->token;
}
* Set token.
* @param string $token
abstract public function setToken($token);