Passed
Push — master ( 295112...e27751 )
by Ryosuke
02:56
created
src/Traits/FollowManagerTrait.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -6,9 +6,20 @@
 block discarded – undo
6 6
 
7 7
 trait FollowManagerTrait
8 8
 {
9
+    /**
10
+     * @param string $msg
11
+     */
9 12
     abstract public static function out($msg);
10 13
     abstract public function __call($method, array $args);
14
+
15
+    /**
16
+     * @param string $endpoint
17
+     */
11 18
     abstract public function collect($endpoint, $followable_page_count, array $params = []);
19
+
20
+    /**
21
+     * @param string $endpoint
22
+     */
12 23
     abstract public function collectAsync($endpoint, $followable_page_count, array $params = []);
13 24
 
14 25
     public function forceMutuals($followable_page_count = INF)
Please login to merge, or discard this patch.
src/Traits/TweetManagerTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -6,6 +6,9 @@
 block discarded – undo
6 6
 
7 7
 trait TweetManagerTrait
8 8
 {
9
+    /**
10
+     * @param string $msg
11
+     */
9 12
     abstract public static function out($msg);
10 13
     abstract public function __call($method, array $args);
11 14
 
Please login to merge, or discard this patch.