Completed
Push — master ( a52fe5...b565b6 )
by
unknown
05:36
created
src/Connectors/ConnectorFactory.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,6 @@
 block discarded – undo
8 8
 use OAuth\Common\Consumer\CredentialsInterface;
9 9
 use OAuth\Common\Http\Client\CurlClient;
10 10
 use OAuth\Common\Consumer\Credentials;
11
-use OAuth\Common\Service\ServiceInterface;
12
-
13 11
 use Borfast\Socializr\Exceptions\InvalidProviderException;
14 12
 use Borfast\Socializr\Exceptions\InvalidConfigurationException;
15 13
 
Please login to merge, or discard this patch.
src/Connectors/LinkedinPage.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,8 @@
 block discarded – undo
5 5
 use Borfast\Socializr\Exceptions\GenericPostingException;
6 6
 use Borfast\Socializr\Post;
7 7
 use Borfast\Socializr\Profile;
8
-use Borfast\Socializr\Page;
9 8
 use Borfast\Socializr\Response;
10 9
 use Borfast\Socializr\Connectors\AbstractConnector;
11
-use OAuth\Common\Storage\TokenStorageInterface;
12 10
 
13 11
 class LinkedinPage extends AbstractConnector
14 12
 {
Please login to merge, or discard this patch.
src/Connectors/Twitter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
19 19
     protected $screen_name;
20 20
 
21 21
 
22
+    /**
23
+     * @param string $path
24
+     */
22 25
     public function request($path, $method = 'GET', $params = [], $headers = [])
23 26
     {
24 27
         $result = parent::request($path, $method, $params, $headers);
Please login to merge, or discard this patch.
src/Connectors/Linkedin.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
19 19
     protected $screen_name;
20 20
 
21 21
 
22
+    /**
23
+     * @param string $path
24
+     */
22 25
     public function request($path, $method = 'GET', $params = [], $headers = [])
23 26
     {
24 27
         $result = parent::request($path, $method, $params, $headers);
Please login to merge, or discard this patch.