Completed
Push — master ( c07d3e...331866 )
by Mehmet
02:45
created
src/SQLTable.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
         'index_type'=> null,
27 27
     ];
28 28
 
29
+    /**
30
+     * @param \Doctrine\DBAL\Schema\AbstractSchemaManager $schemaManager
31
+     */
29 32
     public function __construct($schemaManager, $collection, $fields)
30 33
     {
31 34
         $this->schemaManager = $schemaManager;
Please login to merge, or discard this patch.
src/SQLQueryBuilder.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@
 block discarded – undo
64 64
         $this->setJoinsForType('outerJoin');
65 65
     }
66 66
 
67
+    /**
68
+     * @param string $joinType
69
+     */
67 70
     private function setJoinsForType($joinType)
68 71
     {
69 72
         if ($this->{$joinType} === null) {
Please login to merge, or discard this patch.