Completed
Push — master ( a57043...5df011 )
by Changwan
03:07
created
src/Wandu/Database/Repository/RepositorySettings.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 
9 9
 class RepositorySettings
10 10
 {
11
+    /**
12
+     * @param string $model
13
+     */
11 14
     public static function fromAnnotation($model, Reader $reader)
12 15
     {
13 16
         $settings = [
Please login to merge, or discard this patch.
src/Wandu/Collection/Contracts/ListInterface.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,16 +40,19 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * @param string $key
42 42
      * @param mixed $value
43
+     * @return void
43 44
      */
44 45
     public function set($key, $value);
45 46
 
46 47
     /**
47 48
      * @param string[] ...$keys
49
+     * @return void
48 50
      */
49 51
     public function remove(...$keys);
50 52
 
51 53
     /**
52 54
      * @param string[] ...$keys
55
+     * @return boolean
53 56
      */
54 57
     public function has(...$keys);
55 58
 
@@ -80,7 +83,7 @@  discard block
 block discarded – undo
80 83
 
81 84
     /**
82 85
      * @param callable $handler
83
-     * @return \Wandu\Collection\Contracts\MapInterface<\Wandu\Collection\Contracts\ListInterface>
86
+     * @return \Wandu\Collection\ArrayMap
84 87
      */
85 88
     public function groupBy(callable $handler);
86 89
 
Please login to merge, or discard this patch.