From f47404c7ee0fce3a8e19ae89a3ba7d2a0a99431c Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Tue, 24 Oct 2017 20:01:58 +0200 Subject: [PATCH] formatting --- src/Forge.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Forge.php b/src/Forge.php index a8e401e..afb5221 100644 --- a/src/Forge.php +++ b/src/Forge.php @@ -35,7 +35,7 @@ class Forge public $guzzle; /** - * Timeout + * Number of seconds a request is retried. * * @var int */ @@ -80,13 +80,15 @@ protected function transformCollection($collection, $class, $extraData = []) /** * Set a new timeout - * + * * @param int $timeout - * @return \Themsaid\Forge\Forge + * @return $this */ public function setTimeout($timeout) { $this->timeout = $timeout; + + return $this; } /**