Contao\CoreBundle\Monolog\ContaoContext::getUsername PHP Method

getUsername() public method

Returns the username.
public getUsername ( ) : string | null
return string | null
    public function getUsername()
    {
        return $this->username;
    }

Usage Example

Example #1
0
 /**
  * Tests the setter and getter methods.
  */
 public function testSettersAndGetters()
 {
     $context = new ContaoContext('foo');
     $this->assertEquals('foo', $context->getFunc());
     $this->assertNull($context->getAction());
     $this->assertNull($context->getUsername());
     $this->assertNull($context->getIp());
     $this->assertNull($context->getBrowser());
     $this->assertNull($context->getSource());
     $context->setAction('action');
     $context->setUsername('username');
     $context->setIp('1.2.3.4');
     $context->setBrowser('Mozilla');
     $context->setSource('Foo::bar()');
     $this->assertEquals(json_encode(['func' => 'foo', 'action' => 'action', 'username' => 'username', 'ip' => '1.2.3.4', 'browser' => 'Mozilla']), (string) $context);
 }
All Usage Examples Of Contao\CoreBundle\Monolog\ContaoContext::getUsername