Метод |
Описание |
|
__construct ( string $apiKey, array | stdClass $data = [] ) |
Load the given data array to the record. |
|
addFilter ( string | Airbrake\Filter\FilterInterface $keyName ) : self |
Adds an entry to a black list of GET/POST parameter key names which
should not be sent to the Airbrake server. This should be used to prevent
sensitive information, such as passwords or credit card details from
leaving your application server via error logging. |
|
addFilters ( array $keyNames ) : Configuration |
Adds an array of entries to a black list of GET/POST parameter key names
which should not be sent to the Airbrake server. This should be used to
prevent sensitive information, such as passwords or credit card details
from leaving your application server via error logging. |
|
clearFilters ( ) : Configuration |
Clears the GET/POST request key name black list. |
|
getParameters ( ) : array |
Get the combined server parameters. Note that these parameters will be
filtered according to a black list of key names to ignore. If you wish to
get the unfiltered results you should use the getUnfilteredParameters
method instead. |
|
getUnfilteredParameters ( ) : array |
Get the combined server parameters without applying the registered
filters |
|
verify ( ) |
Verify that the configuration is complete. |
|