Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use correct class name for default processor #547

Merged
merged 1 commit into from
Feb 13, 2018
Merged
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 docs/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ The following settings are available for the client:
.. describe:: processors

An array of classes to use to process data before it is sent to
Sentry. By default, ``Raven_SanitizeDataProcessor`` is used
Sentry. By default, ``Raven_Processor_SanitizeDataProcessor`` is used

.. describe:: processorOptions

Expand All @@ -230,12 +230,12 @@ The following settings are available for the client:
the list of processors used by ``Raven_Client``

An example of overriding the regular expressions in
``Raven_SanitizeDataProcessor`` is below:
``Raven_Processor_SanitizeDataProcessor`` is below:

.. code-block:: php

'processorOptions' => array(
'Raven_SanitizeDataProcessor' => array(
'Raven_Processor_SanitizeDataProcessor' => array(
'fields_re' => '/(user_password|user_token|user_secret)/i',
'values_re' => '/^(?:\d[ -]*?){15,16}$/'
)
Expand Down