Passed
Push — master ( 1e9333...26efa5 )
by Christopher
09:28 queued 06:08
created
MetadataV4/src/edm/TIntConstantExpressionType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@
 block discarded – undo
32 32
      * Gets or sets the inner value
33 33
      *
34 34
      * @param integer ...$value
35
+     * @param integer[] $value
35 36
      * @return integer
36 37
      */
37 38
     public function value(...$value)
Please login to merge, or discard this patch.
MetadataV4/src/edm/TLabeledElementReferenceExpressionType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
      * Gets or sets the inner value
38 38
      *
39 39
      * @param string ...$value
40
+     * @param string[] $value
40 41
      * @return string
41 42
      */
42 43
     public function value(...$value)
Please login to merge, or discard this patch.
MetadataV4/src/edm/TPathExpressionType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
      * Gets or sets the inner value
38 38
      *
39 39
      * @param string ...$value
40
+     * @param string[] $value
40 41
      * @return string
41 42
      */
42 43
     public function value(...$value)
Please login to merge, or discard this patch.
MetadataV4/src/edm/TStringConstantExpressionType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
      * Gets or sets the inner value
38 38
      *
39 39
      * @param string ...$value
40
+     * @param string[] $value
40 41
      * @return string
41 42
      */
42 43
     public function value(...$value)
Please login to merge, or discard this patch.
MetadataV4/src/edm/TTimeOfDayConstantExpressionType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@
 block discarded – undo
32 32
      * Gets or sets the inner value
33 33
      *
34 34
      * @param \DateTime ...$value
35
+     * @param \DateTime[] $value
35 36
      * @return \DateTime
36 37
      */
37 38
     public function value(...$value)
Please login to merge, or discard this patch.
MetadataV4/src/edm/IsOKTraits/TNamespaceNameTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 {
10 10
     use xsdRestrictions;
11 11
 
12
+    /**
13
+     * @param string $TNamespaceName
14
+     */
12 15
     protected function IsTNamespaceNameValid($TNamespaceName)
13 16
     {
14 17
         if (!$this->isNCName($TNamespaceName)) {
Please login to merge, or discard this patch.
MetadataV4/src/edm/IsOKTraits/TSimpleIdentifierTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 block discarded – undo
7 7
 {
8 8
     use xsdRestrictions;
9 9
 
10
+    /**
11
+     * @param string $TSimpleIdentifier
12
+     */
10 13
     protected function IsTSimpleIdentifierValid($TSimpleIdentifier)
11 14
     {
12 15
         if (!$this->isNCName($TSimpleIdentifier)) {
Please login to merge, or discard this patch.