Browse Source

Added ThrowableController to documentation

2.1.0
Dustin Wilson 1 year ago
parent
commit
f181679c0a
  1. 88
      README.md

88
README.md

@ -125,7 +125,7 @@ Unregisters the Catcher instance as an error, exception and shutdown handler.
Unshifts the specified handler(s) onto the beginning of the stack
### MensBeam\Foundation\Handler
### MensBeam\Foundation\Catcher\Handler
All handlers inherit from this abstract class. Since it is an abstract class meant for constructing handlers protected methods and properties will be documented as well.
@ -179,48 +179,30 @@ abstract class Handler {
#### Constants
_CONTENT\_TYPE_: The mime type of the content that is output by the handler
_CONTINUE_: The stack loop continues onto the next handler after handling; this is the default behavior
_BREAK_: The stack loop breaks after the handler finishes, causing any further down in the stack to not run
_EXIT_: The stack loop exits after running all handlers
_OUTPUT_: The handler will output
_SILENT_: The handler will be silent
_CONTENT\_TYPE_: The mime type of the content that is output by the handler
_CONTINUE_: The stack loop continues onto the next handler after handling; this is the default behavior
_BREAK_: The stack loop breaks after the handler finishes, causing any further down in the stack to not run
_EXIT_: The stack loop exits after running all handlers
_OUTPUT_: The handler will output
_SILENT_: The handler will be silent
_NOW_: Outputs immediately after handling
#### Properties (Protected)
Properties which begin with an underscore all are options. They can be set either through the constructor or via `setHandler` by name, removing the underscore at the beginning. All handlers inherit these options.
_outputBuffer_: This is where the output arrays representing the handled throwables are stored until they are dispatched.
_\_backtraceArgFrameLimit_: The number of frames by which there can be arguments output with them. Defaults to _5_.
_\_charset_: The character set of the output; only used if headers weren't sent before an error occurred. Defaults to _"UTF\_8"_.
_\_forceBreak_: When set this will force the stack loop to break after the handler has run. Defaults to _false_.
_\_forceExit_: When set this will force an exit after all handlers have been run. Defaults to _false_.
_\_forceOutputNow_: When set this will force output of the handler immediately. Defaults to _false_.
_\_httpCode_: The HTTP code to be sent; possible values are 200, 400-599. Defaults to _500_.
_\_outputBacktrace_: When true will output a stack trace. Defaults to _false_.
_\_outputPrevious_: When true will output previous throwables. Defaults to _true_.
_\_outputTime_: When true will output times to the output. Defaults to _true_.
_\_outputToStderr_: When the SAPI is cli output errors to stderr. Defaults to _true_.
_\_silent_: When true the handler won't output anything. Defaults to _false_.
_outputBuffer_: This is where the output arrays representing the handled throwables are stored until they are dispatched.
_\_backtraceArgFrameLimit_: The number of frames by which there can be arguments output with them. Defaults to _5_.
_\_charset_: The character set of the output; only used if headers weren't sent before an error occurred. Defaults to _"UTF\_8"_.
_\_forceBreak_: When set this will force the stack loop to break after the handler has run. Defaults to _false_.
_\_forceExit_: When set this will force an exit after all handlers have been run. Defaults to _false_.
_\_forceOutputNow_: When set this will force output of the handler immediately. Defaults to _false_.
_\_httpCode_: The HTTP code to be sent; possible values are 200, 400-599. Defaults to _500_.
_\_outputBacktrace_: When true will output a stack trace. Defaults to _false_.
_\_outputPrevious_: When true will output previous throwables. Defaults to _true_.
_\_outputTime_: When true will output times to the output. Defaults to _true_.
_\_outputToStderr_: When the SAPI is cli output errors to stderr. Defaults to _true_.
_\_silent_: When true the handler won't output anything. Defaults to _false_.
_\_timeFormat_: The PHP-standard date format which to use for times in output. Defaults to _"Y-m-d\\TH:i:s.vO"_.
#### MensBeam\Foundation\Catcher\Handler::dispatch
@ -259,3 +241,35 @@ A callback method meant to be extended by inherited classes where the output arr
Prints the provided string to stderr or stdout depending on how the handler is configured and which SAPI is being used.
### MensBeam\Foundation\Catcher\ThrowableController
All throwables cannot be extended, so this class exists to control throwables for use with Catcher.
```php
namespace MensBeam\Foundation\Catcher;
class ThrowableController {
public function __construct(\Throwable $throwable);
public function getErrorType(): ?string;
public function getFrames(int $argFrameLimit = \PHP_INT_MAX): array;
public function getPrevious(): ?ThrowableController;
public function getThrowable(): \Throwable;
}
```
#### MensBeam\Foundation\Catcher\ThrowableController::getErrorType
Returns the error type of a `MensBeam\Foundation\Catcher\Error`, meaning a human-friendly representation of the error code or null if the throwable isn't an `Error`.
#### MensBeam\Foundation\Catcher\ThrowableController::getFrames
Returns the frames for the throwable as an array with deduplication and fixes all taken care of by the method
#### MensBeam\Foundation\Catcher\ThrowableController::getPrevious
Returns the previous `ThrowableController` if there is one
#### MensBeam\Foundation\Catcher\ThrowableController::getThrowable
Returns the throwable controlled by this class instance
Loading…
Cancel
Save