Skip to content

Commit

Permalink
docs: add version to @deprecate
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Aug 2, 2023
1 parent 14b3b67 commit 1b09623
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions system/Debug/Exceptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Exceptions
*
* @var int
*
* @deprecated No longer used. Moved to BaseExceptionHandler.
* @deprecated 4.4.0 No longer used. Moved to BaseExceptionHandler.
*/
public $ob_level;

Expand All @@ -47,7 +47,7 @@ class Exceptions
*
* @var string
*
* @deprecated No longer used. Moved to BaseExceptionHandler.
* @deprecated 4.4.0 No longer used. Moved to BaseExceptionHandler.
*/
protected $viewPath;

Expand Down Expand Up @@ -235,7 +235,7 @@ public function shutdownHandler()
*
* @return string The path and filename of the view file to use
*
* @deprecated No longer used. Moved to ExceptionHandler.
* @deprecated 4.4.0 No longer used. Moved to ExceptionHandler.
*/
protected function determineView(Throwable $exception, string $templatePath): string
{
Expand Down Expand Up @@ -263,7 +263,7 @@ protected function determineView(Throwable $exception, string $templatePath): st
/**
* Given an exception and status code will display the error to the client.
*
* @deprecated No longer used. Moved to BaseExceptionHandler.
* @deprecated 4.4.0 No longer used. Moved to BaseExceptionHandler.
*/
protected function render(Throwable $exception, int $statusCode)
{
Expand Down Expand Up @@ -305,7 +305,7 @@ protected function render(Throwable $exception, int $statusCode)
/**
* Gathers the variables that will be made available to the view.
*
* @deprecated No longer used. Moved to BaseExceptionHandler.
* @deprecated 4.4.0 No longer used. Moved to BaseExceptionHandler.
*/
protected function collectVars(Throwable $exception, int $statusCode): array
{
Expand Down Expand Up @@ -466,7 +466,7 @@ public static function cleanPath(string $file): string
* Describes memory usage in real-world units. Intended for use
* with memory_get_usage, etc.
*
* @deprecated No longer used. Moved to BaseExceptionHandler.
* @deprecated 4.4.0 No longer used. Moved to BaseExceptionHandler.
*/
public static function describeMemory(int $bytes): string
{
Expand All @@ -486,7 +486,7 @@ public static function describeMemory(int $bytes): string
*
* @return bool|string
*
* @deprecated No longer used. Moved to BaseExceptionHandler.
* @deprecated 4.4.0 No longer used. Moved to BaseExceptionHandler.
*/
public static function highlightFile(string $file, int $lineNumber, int $lines = 15)
{
Expand Down

0 comments on commit 1b09623

Please sign in to comment.