for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the BEAR.JwtAuthModule package.
*
* @license http://opensource.org/licenses/MIT MIT
*/
namespace BEAR\JwtAuth\Encoder;
trait JwtEncoderInject
{
* @var JwtEncoderInterface
protected $jwtEncoder;
* @param JwtEncoderInterface $jwtEncoder
* @\Ray\Di\Di\Inject
public function setJwtEncoder(JwtEncoderInterface $jwtEncoder)
$this->jwtEncoder = $jwtEncoder;
}