Completed
Push — master ( d830a9...721bff )
by Christopher
39:46
created
tests/EdmxTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
         $this->v3MetadataAgainstXSD($d);
30 30
     }
31 31
 
32
+    /**
33
+     * @param string $data
34
+     */
32 35
     public function v3MetadataAgainstXSD($data)
33 36
     {
34 37
         $ds = DIRECTORY_SEPARATOR;
Please login to merge, or discard this patch.
src/MetadataV3/edm/IsOKTraits/EDMSimpleTypeTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
             "GeometricMultiPoint", "GeometricMultiLineString", "GeometricMultiPolygon", "GeometryCollection",
14 14
             "Guid", "Int16", "Int32", "Int64", "String", "SByte"];
15 15
         if (!is_string($string)) {
16
-            $msg = "Input must be a string: ". get_class($this);
16
+            $msg = "Input must be a string: ".get_class($this);
17 17
             throw new \InvalidArgumentException($msg);
18 18
         }
19 19
         if (!in_array($string, $validType)) {
Please login to merge, or discard this patch.
src/MetadataV3/edm/TEntityPropertyType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
     public function isOK(&$msg = null)
243 243
     {
244 244
         if (null != $this->storeGeneratedPattern && !$this->isTGenerationPatternValid($this->storeGeneratedPattern)) {
245
-            $msg = "Store generation pattern must be a valid TGenerationPattern: " . get_class($this);
245
+            $msg = "Store generation pattern must be a valid TGenerationPattern: ".get_class($this);
246 246
             return false;
247 247
         }
248 248
         if (!$this->isValidArrayOK(
Please login to merge, or discard this patch.