Phprest\Entity\Error::getDetails PHP Méthode

getDetails() public méthode

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

Usage Example

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