Completed
Push — master ( 888b36...941487 )
by Christopher
06:06
created
src/MetadataV4/edm/IsOKTraits/TNamespaceNameTrait.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
     use xsdRestrictions;
10 10
 
11
+    /**
12
+     * @param string $TNamespaceName
13
+     */
11 14
     protected function isTNamespaceNameValid($TNamespaceName)
12 15
     {
13 16
         if (!$this->isNCName($TNamespaceName)) {
Please login to merge, or discard this patch.
src/MetadataV4/edm/IsOKTraits/TSimpleIdentifierTrait.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
     use xsdRestrictions;
10 10
 
11
+    /**
12
+     * @param string $TSimpleIdentifier
13
+     */
11 14
     protected function isTSimpleIdentifierValid($TSimpleIdentifier)
12 15
     {
13 16
         if (!$this->isNCName($TSimpleIdentifier)) {
Please login to merge, or discard this patch.
src/MetadataV3/edm/IsOKTraits/TPathTrait.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
     use xsdRestrictions;
10 10
 
11
+    /**
12
+     * @param string $string
13
+     */
11 14
     public function isTPathValid($string)
12 15
     {
13 16
         // The below pattern represents the allowed identifiers in ECMA specification plus the '/' for path segment
Please login to merge, or discard this patch.
tests/testType.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@  discard block
 block discarded – undo
30 30
         return parent::isNullInstanceOf($var, $instanceOf);
31 31
     }
32 32
 
33
+    /**
34
+     * @param string $instanceOf
35
+     */
33 36
     public function isValidArray(array $arr = null, $instanceOf, $minCount = -1, $maxCount = -1)
34 37
     {
35 38
         return parent::isValidArray($arr, $instanceOf, $minCount, $maxCount);
@@ -40,6 +43,9 @@  discard block
 block discarded – undo
40 43
         return parent::isChildArrayOK($arr, $msg);
41 44
     }
42 45
 
46
+    /**
47
+     * @param null|string $url
48
+     */
43 49
     public function isURLValid($url)
44 50
     {
45 51
         return parent::isURLValid($url);
@@ -50,6 +56,9 @@  discard block
 block discarded – undo
50 56
         return true;
51 57
     }
52 58
 
59
+    /**
60
+     * @return boolean
61
+     */
53 62
     public function isObjectNullOrOK(IsOK $object = null, &$msg = null)
54 63
     {
55 64
         return parent::isObjectNullOrOK($object, $msg);
Please login to merge, or discard this patch.
src/MetadataManager.php 1 patch
Doc Comments   +22 added lines patch added patch discarded remove patch
@@ -54,6 +54,11 @@  discard block
 block discarded – undo
54 54
         return $cereal->serialize($this->getEdmx(), "xml");
55 55
     }
56 56
 
57
+    /**
58
+     * @param string $name
59
+     * @param TTextType $summary
60
+     * @param TTextType $longDescription
61
+     */
57 62
     public function addEntityType($name, $accessType = "Public", $summary = null, $longDescription = null)
58 63
     {
59 64
         $NewEntity = new TEntityTypeType();
@@ -118,6 +123,14 @@  discard block
 block discarded – undo
118 123
         return $NewProperty;
119 124
     }
120 125
 
126
+    /**
127
+     * @param string $name
128
+     * @param string $type
129
+     * @param string $defaultValue
130
+     * @param string $storeGeneratedPattern
131
+     * @param TTextType $summary
132
+     * @param TTextType $longDescription
133
+     */
121 134
     public function addPropertyToEntityType(
122 135
         TEntityTypeType $entityType,
123 136
         $name,
@@ -147,6 +160,11 @@  discard block
 block discarded – undo
147 160
         return $NewProperty;
148 161
     }
149 162
 
163
+    /**
164
+     * @param string $principalMultiplicity
165
+     * @param string $principalProperty
166
+     * @param string $dependentMultiplicity
167
+     */
150 168
     public function addNavigationPropertyToEntityType(
151 169
         TEntityTypeType $principalType,
152 170
         $principalMultiplicity,
@@ -301,6 +319,10 @@  discard block
 block discarded – undo
301 319
         return $association;
302 320
     }
303 321
 
322
+    /**
323
+     * @param string $principalEntitySetName
324
+     * @param string $dependentEntitySetName
325
+     */
304 326
     protected function createAssocationSetForAssocation(
305 327
         TAssociationType $association,
306 328
         $principalEntitySetName,
Please login to merge, or discard this patch.
src/MetadataV1/mapping/cs/TQueryViewType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -36,6 +36,7 @@
 block discarded – undo
36 36
      * Gets or sets the inner value
37 37
      *
38 38
      * @param  string ...$value
39
+     * @param string[] $value
39 40
      * @return string
40 41
      */
41 42
     public function value(...$value)
Please login to merge, or discard this patch.
src/MetadataV3/edm/Groups/TFunctionImportAttributesTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      * isset returnType
95 95
      *
96
-     * @param  scalar $index
96
+     * @param  integer $index
97 97
      * @return boolean
98 98
      */
99 99
     public function issetReturnType($index)
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * unset returnType
106 106
      *
107
-     * @param  scalar $index
107
+     * @param  integer $index
108 108
      * @return void
109 109
      */
110 110
     public function unsetReturnType($index)
Please login to merge, or discard this patch.
src/MetadataV4/edm/TBinaryConstantExpressionType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
      * Gets or sets the inner value
32 32
      *
33 33
      * @param  string ...$value
34
+     * @param string[] $value
34 35
      * @return string
35 36
      */
36 37
     public function value(...$value)
Please login to merge, or discard this patch.
src/MetadataV4/edm/TBoolConstantExpressionType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
      * Gets or sets the inner value
32 32
      *
33 33
      * @param  boolean ...$value
34
+     * @param boolean[] $value
34 35
      * @return boolean
35 36
      */
36 37
     public function value(...$value)
Please login to merge, or discard this patch.