Merge pull request #21302 from nextcloud/techdebt/noid/adjust-to-parent-implementation
Adjust to parent implementation
This commit is contained in:
commit
d0d6cb6ea6
|
@ -26,11 +26,11 @@ namespace OCA\DAV\Tests\unit\Connector\Sabre\RequestTest;
|
|||
|
||||
class ExceptionPlugin extends \OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin {
|
||||
/**
|
||||
* @var \Exception[]
|
||||
* @var \Throwable[]
|
||||
*/
|
||||
protected $exceptions = [];
|
||||
|
||||
public function logException(\Exception $ex) {
|
||||
public function logException(\Throwable $ex) {
|
||||
$exceptionClass = get_class($ex);
|
||||
if (!isset($this->nonFatalExceptions[$exceptionClass])) {
|
||||
$this->exceptions[] = $ex;
|
||||
|
@ -38,7 +38,7 @@ class ExceptionPlugin extends \OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin {
|
|||
}
|
||||
|
||||
/**
|
||||
* @return \Exception[]
|
||||
* @return \Throwable[]
|
||||
*/
|
||||
public function getExceptions() {
|
||||
return $this->exceptions;
|
||||
|
|
Loading…
Reference in New Issue