Skip to content

Commit 8a20610

Browse files
style(*): Fix code smell
1 parent ef2af17 commit 8a20610

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/RestClient/Curl.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
/** @noinspection PhpComposerExtensionStubsInspection */
44

5+
declare(strict_types=1);
6+
57
namespace CrowdSecBouncer\RestClient;
68

79
use CrowdSecBouncer\BouncerException;
@@ -127,8 +129,6 @@ private function createOptions(
127129
$options[\CURLOPT_TIMEOUT] = $this->timeout;
128130
}
129131

130-
// $options[CURLOPT_VERBOSE] = true;
131-
132132
return $options;
133133
}
134134

src/RestClient/FileGetContents.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace CrowdSecBouncer\RestClient;
46

57
use CrowdSecBouncer\BouncerException;

0 commit comments

Comments
 (0)