We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2af17 commit 8a20610Copy full SHA for 8a20610
src/RestClient/Curl.php
@@ -2,6 +2,8 @@
2
3
/** @noinspection PhpComposerExtensionStubsInspection */
4
5
+declare(strict_types=1);
6
+
7
namespace CrowdSecBouncer\RestClient;
8
9
use CrowdSecBouncer\BouncerException;
@@ -127,8 +129,6 @@ private function createOptions(
127
129
$options[\CURLOPT_TIMEOUT] = $this->timeout;
128
130
}
131
- // $options[CURLOPT_VERBOSE] = true;
-
132
return $options;
133
134
src/RestClient/FileGetContents.php
@@ -1,5 +1,7 @@
1
<?php
0 commit comments