Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/oauth/exception/ZohoOAuthException.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ class ZohoOAuthException extends \Exception
protected $code = 0;

// User-defined exception code
protected $file;
protected string $file;

// Source filename of exception
protected $line;
protected int $line;

// Source line of exception
private $trace;
Expand All @@ -33,4 +33,4 @@ public function __toString()
{
return get_class($this) . " Caused by:'{$this->message}' in {$this->file}({$this->line})\n" . "{$this->getTraceAsString()}";
}
}
}