Skip to content

Commit d93c396

Browse files
committed
Coding Standards
1 parent 3d22954 commit d93c396

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

src/ConvertKit_API.php

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class ConvertKit_API
2020
{
2121
use ConvertKit_API_Traits;
22-
22+
2323
/**
2424
* Debug
2525
*
@@ -427,16 +427,15 @@ public function get_request_headers(string $type = 'application/json', bool $aut
427427
* Returns the maximum amount of time to wait for
428428
* a response to the request before exiting.
429429
*
430-
* @since 2.0.0
430+
* @since 2.0.0
431431
*
432-
* @return int Timeout, in seconds.
432+
* @return integer Timeout, in seconds.
433433
*/
434-
public function get_timeout() {
435-
434+
public function get_timeout()
435+
{
436436
$timeout = 10;
437437

438438
return $timeout;
439-
440439
}
441440

442441
/**

src/ConvertKit_API_Traits.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1796,9 +1796,9 @@ abstract public function get_request_headers(string $type = 'application/json',
17961796
* Returns the maximum amount of time to wait for
17971797
* a response to the request before exiting.
17981798
*
1799-
* @since 2.0.0
1799+
* @since 2.0.0
18001800
*
1801-
* @return int Timeout, in seconds.
1801+
* @return integer Timeout, in seconds.
18021802
*/
18031803
abstract public function get_timeout();
18041804

0 commit comments

Comments
 (0)