Completed
Push — master ( b1e8a1...edf0e8 )
by Nikola
03:49
created
src/RunOpenCode/AbstractBuilder/Ast/Metadata/ParameterMetadata.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      * @param string $type
51 51
      * @param bool $byRef
52 52
      * @param bool $variadic
53
-     * @param mixed $default
53
+     * @param null|\PhpParser\Node\Expr $default
54 54
      */
55 55
     public function __construct($name, $type = null, $byRef = false, $variadic = false, $default = null)
56 56
     {
Please login to merge, or discard this patch.
src/RunOpenCode/AbstractBuilder/Ast/Metadata/TraitMetadata.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
      */
42 42
     private $ast;
43 43
 
44
+    /**
45
+     * @param string $name
46
+     */
44 47
     public function __construct($name, array $traits = [], array $methods = [], Trait_ $ast = null)
45 48
     {
46 49
         $this->name = $name;
Please login to merge, or discard this patch.
src/RunOpenCode/AbstractBuilder/Ast/Metadata/FileMetadata.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * FileMetadata constructor.
46 46
      *
47 47
      * @param string $filename
48
-     * @param array $classes
48
+     * @param ClassMetadata[] $classes
49 49
      * @param array $traits
50 50
      * @param array $ast
51 51
      */
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @return array
116
+     * @return \PhpParser\Node[]
117 117
      */
118 118
     public function getAst()
119 119
     {
Please login to merge, or discard this patch.
src/RunOpenCode/AbstractBuilder/Generator/BuilderGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
         $this->printer = new Standard();
46 46
     }
47 47
 
48
+    /**
49
+     * @param string $builderClassName
50
+     */
48 51
     public function create(ClassChoice $buildingClassChoice, $builderFilename, $builderClassName)
49 52
     {
50 53
 
Please login to merge, or discard this patch.