Phprest\Entity\Error::getDetails PHP Method

getDetails() public method

public getDetails ( ) : array
return array
    public function getDetails()
    {
        return $this->details;
    }

Usage Example

Exemplo n.º 1
0
 public function testGetDetails()
 {
     $error = new Error(new Exception('', 0, 500, ['details']));
     $this->assertEquals(['details'], $error->getDetails());
 }