Exemplo n.º 1
0
 public function testSetScopeId()
 {
     $this->securityContext->expects($this->never())->method('getToken');
     $this->manager->setScopeId(456);
     $this->assertEquals(456, $this->manager->getScopeId());
 }
Exemplo n.º 2
0
 public function testGetScopedEntityName()
 {
     $this->assertEquals('user', $this->object->getScopedEntityName());
 }
Exemplo n.º 3
0
 /**
  * @return null|string
  */
 public function getUserConfigSignature()
 {
     return $this->userScopeManager->getSettingValue('oro_email.signature');
 }