Completed
Pull Request — develop (#70)
by
unknown
34:28
created
src/ConfigurationReader/PhpReservedKeyword.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,6 +18,6 @@
 block discarded – undo
18 18
      */
19 19
     public static function getDefaultConfigurationPath()
20 20
     {
21
-        return __DIR__ . '/../resources/config/php_reserved_keywords.yml';
21
+        return __DIR__.'/../resources/config/php_reserved_keywords.yml';
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
src/ConfigurationReader/GeneratorOptions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
      */
121 121
     public static function getDefaultConfigurationPath()
122 122
     {
123
-        return __DIR__ . '/../resources/config/generator_options.yml';
123
+        return __DIR__.'/../resources/config/generator_options.yml';
124 124
     }
125 125
     /**
126 126
      * Get category option value
Please login to merge, or discard this patch.
src/ConfigurationReader/ServiceReservedMethod.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,6 +18,6 @@
 block discarded – undo
18 18
      */
19 19
     public static function getDefaultConfigurationPath()
20 20
     {
21
-        return __DIR__ . '/../resources/config/service_reserved_keywords.yml';
21
+        return __DIR__.'/../resources/config/service_reserved_keywords.yml';
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
src/ConfigurationReader/XsdTypes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public static function instance($filename = null)
47 47
     {
48
-        return parent::instance(empty($filename) ? __DIR__ . '/../resources/config/xsd_types.yml' : $filename);
48
+        return parent::instance(empty($filename) ? __DIR__.'/../resources/config/xsd_types.yml' : $filename);
49 49
     }
50 50
     /**
51 51
      * @param string $xsdType
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public static function isAnonymous($xsdType)
63 63
     {
64
-        return (bool) preg_match(self::ANONYMOUS_TYPE, $xsdType);
64
+        return (bool)preg_match(self::ANONYMOUS_TYPE, $xsdType);
65 65
     }
66 66
     /**
67 67
      * @param string $xsdType
Please login to merge, or discard this patch.
src/ConfigurationReader/StructArrayReservedMethod.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,6 @@
 block discarded – undo
26 26
      */
27 27
     public static function getDefaultArrayConfigurationPath()
28 28
     {
29
-        return __DIR__ . '/../resources/config/struct_array_reserved_keywords.yml';
29
+        return __DIR__.'/../resources/config/struct_array_reserved_keywords.yml';
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
src/ConfigurationReader/StructReservedMethod.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,6 +18,6 @@
 block discarded – undo
18 18
      */
19 19
     public static function getDefaultConfigurationPath()
20 20
     {
21
-        return __DIR__ . '/../resources/config/struct_reserved_keywords.yml';
21
+        return __DIR__.'/../resources/config/struct_reserved_keywords.yml';
22 22
     }
23 23
 }
Please login to merge, or discard this patch.