Completed
Pull Request — master (#115)
by Sergey
02:42
created
src/Api/Providers/Keywords.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace seregazhuk\PinterestBot\Api\Providers;
4 4
 
5
-use seregazhuk\PinterestBot\Api\Request;
6 5
 use seregazhuk\PinterestBot\Helpers\UrlHelper;
7 6
 
8 7
 class Keywords extends Provider
Please login to merge, or discard this patch.
src/Helpers/Providers/Traits/Followable.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -45,7 +45,13 @@
 block discarded – undo
45 45
 
46 46
     abstract protected function getEntityIdName();
47 47
 
48
+    /**
49
+     * @return string
50
+     */
48 51
     abstract protected function getFollowUrl();
49 52
 
53
+    /**
54
+     * @return string
55
+     */
50 56
     abstract protected function getUnfFollowUrl();
51 57
 }
Please login to merge, or discard this patch.
src/Helpers/Providers/Traits/Searchable.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,11 +47,11 @@
 block discarded – undo
47 47
     /**
48 48
      * Creates Pinterest API search request.
49 49
      *
50
-     * @param       $query
51
-     * @param       $scope
50
+     * @param       string $query
51
+     * @param       string $scope
52 52
      * @param array $bookmarks
53 53
      *
54
-     * @return array
54
+     * @return string
55 55
      */
56 56
     protected function createSearchQuery($query, $scope, $bookmarks = [])
57 57
     {
Please login to merge, or discard this patch.