Ignore basic methods, improving code coverage.

This commit is contained in:
James Cole
2018-06-02 06:18:07 +02:00
parent ddc1d81665
commit ba01c4bbe8
22 changed files with 104 additions and 89 deletions

View File

@@ -53,6 +53,7 @@ abstract class SpectreRequest
abstract public function call(): void;
/**
* @codeCoverageIgnore
* @return string
*/
public function getAppId(): string
@@ -61,6 +62,8 @@ abstract class SpectreRequest
}
/**
* @codeCoverageIgnore
*
* @param string $appId
*/
public function setAppId(string $appId): void
@@ -69,6 +72,7 @@ abstract class SpectreRequest
}
/**
* @codeCoverageIgnore
* @return string
*/
public function getSecret(): string
@@ -77,6 +81,8 @@ abstract class SpectreRequest
}
/**
* @codeCoverageIgnore
*
* @param string $secret
*/
public function setSecret(string $secret): void
@@ -85,6 +91,7 @@ abstract class SpectreRequest
}
/**
* @codeCoverageIgnore
* @return string
*/
public function getServer(): string
@@ -93,6 +100,8 @@ abstract class SpectreRequest
}
/**
* @codeCoverageIgnore
*
* @param string $privateKey
*/
public function setPrivateKey(string $privateKey): void