Completed
Push — master ( 40e2b5...213ad2 )
by Tyler
02:11
created
src/Host.php 3 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Tylercd100\ServerStatus;
4 4
 
5
-use JJG\Ping;
6 5
 use GuzzleHttp\Client;
6
+use JJG\Ping;
7 7
 
8 8
 class Host 
9 9
 {
Please login to merge, or discard this patch.
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * Checks the ping of the host
41 41
      * 
42
-     * @return double|false
42
+     * @return double
43 43
      */
44 44
     public function ping(){
45 45
         $this->ping = $this->pinger->ping();
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * Gets the value of host.
73 73
      *
74
-     * @return mixed
74
+     * @return string
75 75
      */
76 76
     public function getHost()
77 77
     {
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     /**
82 82
      * Gets the value of ping.
83 83
      *
84
-     * @return mixed
84
+     * @return double
85 85
      */
86 86
     public function getPing()
87 87
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Gets the value of statusCode.
93 93
      *
94
-     * @return mixed
94
+     * @return integer
95 95
      */
96 96
     public function getStatusCode()
97 97
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
      */
50 50
     protected function strip($host)
51 51
     {
52
-        $host = str_replace("https://","",$host);
53
-        $host = str_replace("http://", "",$host);
52
+        $host = str_replace("https://", "", $host);
53
+        $host = str_replace("http://", "", $host);
54 54
         return $host;
55 55
     }
56 56
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * @param  integer $timeout The timeout of the request
72 72
      * @return integer
73 73
      */
74
-    public function status($timeout = 5){
74
+    public function status($timeout = 5) {
75 75
         $response = $this->requester->request('GET', $this->host, [
76 76
             'connect_timeout' => 5,
77 77
             'timeout' => 5
Please login to merge, or discard this patch.