Completed
Push — master ( 8773a6...36049f )
by Dmitry
04:14
created
src/Schema/Type.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -139,6 +139,9 @@
 block discarded – undo
139 139
         return $this;
140 140
     }
141 141
 
142
+    /**
143
+     * @param string $property
144
+     */
142 145
     public function reference(Contracts\Type $foreign, $property = null)
143 146
     {
144 147
         if (!$property) {
Please login to merge, or discard this patch.
src/Client.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
         return $response;
32 32
     }
33 33
 
34
+    /**
35
+     * @param double $start
36
+     */
34 37
     private function log($start, $class, $request = [], $response = [])
35 38
     {
36 39
         if ($this->logging) {
Please login to merge, or discard this patch.
src/Repository.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
     }
206 206
 
207 207
     /**
208
-     * @return Entity
208
+     * @return boolean
209 209
      */
210 210
     public function knows(Contracts\Entity $entity)
211 211
     {
@@ -340,6 +340,9 @@  discard block
 block discarded – undo
340 340
         return $this->type;
341 341
     }
342 342
 
343
+    /**
344
+     * @param string $query
345
+     */
343 346
     public function evaluate($query)
344 347
     {
345 348
         $result = [];
Please login to merge, or discard this patch.