예제 #1
0
 /**
  * @covers ::resetInfo
  */
 public function testResetInfo()
 {
     $this->cacheTagsInvalidator->expects($this->once())->method('invalidateTags')->with(['token_info']);
     $this->token->resetInfo();
 }
예제 #2
0
파일: Token.php 프로젝트: Wylbur/gj
 /**
  * {@inheritdoc}
  */
 public function resetInfo()
 {
     parent::resetInfo();
     $this->globalTokenTypes = NULL;
 }