Lines Matching refs:GET
64 // Should not suppress GET with body
67 headers: ['REQUEST_METHOD' => 'GET'],
70 $tester->expectAccessLog("'GET /request-3' 200", suppressable: false);
72 // Should suppress GET with no body
76 $tester->expectAccessLog("'GET /request-4' 200", suppressable: true);
78 // Should not suppress GET with no body but incorrect content length
81 headers: ['REQUEST_METHOD' => 'GET', 'CONTENT_LENGTH' => 100]
83 $tester->expectAccessLog("'GET /request-5' 200", suppressable: false);
85 // Should suppress GET with body but 0 content length (no stdin readable)
88 headers: ['REQUEST_METHOD' => 'GET', 'CONTENT_LENGTH' => 0],
91 $tester->expectAccessLog("'GET /request-6' 200", suppressable: true);