Completed
Push — master ( 7f6918...fb7822 )
by Matthew
02:21
created
src/Resources/Agent.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 
9 9
 namespace Freshdesk\Resources;
10 10
 
11
-use Freshdesk\Api;
12 11
 use Freshdesk\Exceptions\AccessDeniedException;
13 12
 use Freshdesk\Exceptions\ApiException;
14 13
 use Freshdesk\Exceptions\ConflictingStateException;
Please login to merge, or discard this patch.
src/Resources/Company.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 
9 9
 namespace Freshdesk\Resources;
10 10
 
11
-use Freshdesk\Api;
12 11
 use Freshdesk\Exceptions\AccessDeniedException;
13 12
 use Freshdesk\Exceptions\ApiException;
14 13
 use Freshdesk\Exceptions\ConflictingStateException;
Please login to merge, or discard this patch.
src/Resources/Contact.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 
9 9
 namespace Freshdesk\Resources;
10 10
 
11
-use Freshdesk\Api;
12 11
 use Freshdesk\Exceptions\AccessDeniedException;
13 12
 use Freshdesk\Exceptions\ApiException;
14 13
 use Freshdesk\Exceptions\AuthenticationException;
Please login to merge, or discard this patch.
src/Resources/Group.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 
9 9
 namespace Freshdesk\Resources;
10 10
 
11
-use Freshdesk\Api;
12 11
 use Freshdesk\Exceptions\AccessDeniedException;
13 12
 use Freshdesk\Exceptions\ApiException;
14 13
 use Freshdesk\Exceptions\ConflictingStateException;
Please login to merge, or discard this patch.
src/Resources/Ticket.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 
9 9
 namespace Freshdesk\Resources;
10 10
 
11
-use Freshdesk\Api;
12 11
 use Freshdesk\Exceptions\AccessDeniedException;
13 12
 use Freshdesk\Exceptions\ApiException;
14 13
 use Freshdesk\Exceptions\AuthenticationException;
Please login to merge, or discard this patch.
src/Resources/AbstractResource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
      */
41 41
     protected function endpoint($id = null)
42 42
     {
43
-        return $id == null ? $this->endpoint : $this->endpoint.'/'.$id;
43
+        return $id == null ? $this->endpoint : $this->endpoint . '/' . $id;
44 44
     }
45 45
 }
46 46
\ No newline at end of file
Please login to merge, or discard this patch.