Completed
Push — master ( 8deccf...0fd7bd )
by
unknown
03:42 queued 02:08
created

SearchUpdater_BindManipulationCaptureFilter.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace SilverStripe\FullTextSearch\Search\Updaters;
4
5
use SilverStripe\Control\RequestFilter;
6
use SilverStripe\Control\HTTPRequest;
7
use SilverStripe\Control\HTTPResponse;
8
9
class SearchUpdater_BindManipulationCaptureFilter implements RequestFilter
0 ignored issues
show
Deprecated Code introduced by
The interface SilverStripe\Control\RequestFilter has been deprecated with message: 4.0..5.0 Use HTTPMiddleware instead

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
10
{
11
12
    public function preRequest(HTTPRequest $request)
13
    {
14
        SearchUpdater::bind_manipulation_capture();
15
    }
16
17
    public function postRequest(HTTPRequest $request, HTTPResponse $response)
18
    {
19
        /* NOP */
20
    }
21
}
22